patch 9.0.0254: typo in function name
Problem: Typo in function name.
Solution: Rename the function. (closes #10971)
diff --git a/src/insexpand.c b/src/insexpand.c
index fc3eff0..1ff1c99 100644
--- a/src/insexpand.c
+++ b/src/insexpand.c
@@ -1495,7 +1495,7 @@
* skipping the word at 'skip_word'. Returns OK on success.
*/
static int
-thesarurs_add_words_in_line(
+thesaurus_add_words_in_line(
char_u *fname,
char_u **buf_arg,
int dir,
@@ -1598,7 +1598,7 @@
{
// For a thesaurus, add all the words in the line
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]);
}
if (add_r == OK)
@@ -2083,7 +2083,7 @@
ctrl_x_mode = CTRL_X_FILES;
break;
case Ctrl_K:
- // complete words from a dictinoary
+ // complete words from a dictionary
ctrl_x_mode = CTRL_X_DICTIONARY;
break;
case Ctrl_R:
diff --git a/src/version.c b/src/version.c
index 48b75dc..a4787e4 100644
--- a/src/version.c
+++ b/src/version.c
@@ -732,6 +732,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 254,
+/**/
253,
/**/
252,