diff options
author | Christian Brabandt <cb@256bit.org> | 2021-06-24 19:55:27 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-06-24 19:55:27 +0200 |
commit | 98703d7f6c9a0ef9e54cb291a92342b9f96db732 (patch) | |
tree | 8f2d8c4276e58427c937022b16374d5a82fd8415 | |
parent | 3a62b14077c51c739cdc755356882b40c299f1c0 (diff) | |
download | vim-git-98703d7f6c9a0ef9e54cb291a92342b9f96db732.tar.gz |
patch 8.2.3045: minor typosv8.2.3045
Problem: Minor typos.
Solution: Fix the typos. (Christian Brabandt, closes #8441)
-rw-r--r-- | src/VisVim/README_VisVim.txt | 2 | ||||
-rw-r--r-- | src/evalfunc.c | 2 | ||||
-rw-r--r-- | src/testdir/vim9.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
4 files changed, 5 insertions, 3 deletions
diff --git a/src/VisVim/README_VisVim.txt b/src/VisVim/README_VisVim.txt index d96becf11..f96f102d1 100644 --- a/src/VisVim/README_VisVim.txt +++ b/src/VisVim/README_VisVim.txt @@ -213,7 +213,7 @@ Troubleshooting Cause: You can't delete an item you once added to the add-ins list box. Explanation: M$ just didn't put a 'delete' button in the dialog box. - Unfortunately there is no DEL key accellerator as well... + Unfortunately there is no DEL key accelerator as well... Workaround: You can't kill it, but you can knock it out: 1. Uncheck the check box in front of 'Vim Developer Studio Add-in'. diff --git a/src/evalfunc.c b/src/evalfunc.c index 3dd887b88..2539515bc 100644 --- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -7973,7 +7973,7 @@ f_searchpos(typval_T *argvars, typval_T *rettv) /* * Set the cursor or mark position. - * If 'charpos' is TRUE, then use the column number as a character offet. + * If 'charpos' is TRUE, then use the column number as a character offset. * Otherwise use the column number as a byte offset. */ static void diff --git a/src/testdir/vim9.vim b/src/testdir/vim9.vim index 9efa65552..cb66d4260 100644 --- a/src/testdir/vim9.vim +++ b/src/testdir/vim9.vim @@ -107,7 +107,7 @@ def CheckDefAndScriptFailure(lines: list<string>, error: string, lnum = -3) CheckScriptFailure(['vim9script'] + lines, error, lnum + 1) enddef -" As CheckDefAndScriptFailure() but with two different exepcted errors. +" As CheckDefAndScriptFailure() but with two different exepected errors. def CheckDefAndScriptFailure2( lines: list<string>, errorDef: string, diff --git a/src/version.c b/src/version.c index d77119c06..d0e9da6fc 100644 --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3045, +/**/ 3044, /**/ 3043, |