patch 9.0.0254: typo in function name

Problem:    Typo in function name.
Solution:   Rename the function. (closes #10971)
This commit is contained in:
zeertzjq
2022-08-24 16:48:23 +01:00
committed by Bram Moolenaar
parent 753885b6c5
commit 5fb3aabc2b
2 changed files with 5 additions and 3 deletions

View File

@ -1495,7 +1495,7 @@ theend:
* skipping the word at 'skip_word'. Returns OK on success. * skipping the word at 'skip_word'. Returns OK on success.
*/ */
static int static int
thesarurs_add_words_in_line( thesaurus_add_words_in_line(
char_u *fname, char_u *fname,
char_u **buf_arg, char_u **buf_arg,
int dir, int dir,
@ -1598,7 +1598,7 @@ ins_compl_files(
{ {
// For a thesaurus, add all the words in the line // For a thesaurus, add all the words in the line
ptr = buf; ptr = buf;
add_r = thesarurs_add_words_in_line(files[i], &ptr, *dir, add_r = thesaurus_add_words_in_line(files[i], &ptr, *dir,
regmatch->startp[0]); regmatch->startp[0]);
} }
if (add_r == OK) if (add_r == OK)
@ -2083,7 +2083,7 @@ set_ctrl_x_mode(int c)
ctrl_x_mode = CTRL_X_FILES; ctrl_x_mode = CTRL_X_FILES;
break; break;
case Ctrl_K: case Ctrl_K:
// complete words from a dictinoary // complete words from a dictionary
ctrl_x_mode = CTRL_X_DICTIONARY; ctrl_x_mode = CTRL_X_DICTIONARY;
break; break;
case Ctrl_R: case Ctrl_R:

View File

@ -731,6 +731,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
254,
/**/ /**/
253, 253,
/**/ /**/