Skip to content

Commit 5fb3aab

Browse files
zeertzjqbrammool
authored andcommitted
patch 9.0.0254: typo in function name
Problem: Typo in function name. Solution: Rename the function. (closes #10971)
1 parent 753885b commit 5fb3aab

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

src/insexpand.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ ins_compl_dictionaries(
14951495
* skipping the word at 'skip_word'. Returns OK on success.
14961496
*/
14971497
static int
1498-
thesarurs_add_words_in_line(
1498+
thesaurus_add_words_in_line(
14991499
char_u *fname,
15001500
char_u **buf_arg,
15011501
int dir,
@@ -1598,7 +1598,7 @@ ins_compl_files(
15981598
{
15991599
// For a thesaurus, add all the words in the line
16001600
ptr = buf;
1601-
add_r = thesarurs_add_words_in_line(files[i], &ptr, *dir,
1601+
add_r = thesaurus_add_words_in_line(files[i], &ptr, *dir,
16021602
regmatch->startp[0]);
16031603
}
16041604
if (add_r == OK)
@@ -2083,7 +2083,7 @@ set_ctrl_x_mode(int c)
20832083
ctrl_x_mode = CTRL_X_FILES;
20842084
break;
20852085
case Ctrl_K:
2086-
// complete words from a dictinoary
2086+
// complete words from a dictionary
20872087
ctrl_x_mode = CTRL_X_DICTIONARY;
20882088
break;
20892089
case Ctrl_R:

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,8 @@ static char *(features[]) =
731731

732732
static int included_patches[] =
733733
{ /* Add new patch number below this line */
734+
/**/
735+
254,
734736
/**/
735737
253,
736738
/**/

0 commit comments

Comments
 (0)