From: zeertzjq Date: Wed, 7 Jan 2026 21:31:22 +0000 (+0000) Subject: patch 9.1.2063: A few typos in the code and runtime files X-Git-Tag: v9.1.2063^0 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da1c4313094e3a4fefe8f0f248bb2b18bd685dbd;p=thirdparty%2Fvim.git patch 9.1.2063: A few typos in the code and runtime files Problem: A few typos in the code and runtime files Solution: Fix those (zeertzjq). closes: #19119 Signed-off-by: zeertzjq Signed-off-by: Christian Brabandt --- diff --git a/runtime/doc/insert.txt b/runtime/doc/insert.txt index 28536d1bc2..4890892197 100644 --- a/runtime/doc/insert.txt +++ b/runtime/doc/insert.txt @@ -1,4 +1,4 @@ -*insert.txt* For Vim version 9.1. Last change: 2025 Nov 09 +*insert.txt* For Vim version 9.1. Last change: 2026 Jan 07 VIM REFERENCE MANUAL by Bram Moolenaar @@ -1720,7 +1720,7 @@ Complete: Notes - It doesn't complete command arguments that rely on 'shellcmd' completion - type in Windows and WSL due to general slowness of canditate gathering, + type in Windows and WSL due to general slowness of candidate gathering, e.g. > terminal dir diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt index 67c8b29041..2d9ba76723 100644 --- a/runtime/doc/options.txt +++ b/runtime/doc/options.txt @@ -1,4 +1,4 @@ -*options.txt* For Vim version 9.1. Last change: 2025 Dec 27 +*options.txt* For Vim version 9.1. Last change: 2026 Jan 07 VIM REFERENCE MANUAL by Bram Moolenaar @@ -8141,7 +8141,7 @@ A jump table for the options with a short description can be found at |Q_op|. when it is turned off. It is also reset when 'compatible' is set. The 'L' flag in 'cpoptions' alters tab behavior when 'list' is - enabled. See also |ins-expandtab| ans user manual section |30.5| for + enabled. See also |ins-expandtab| and user manual section |30.5| for in-depth explanations. If Vim is compiled with the |+vartabs| feature then the value of diff --git a/runtime/doc/uganda.txt b/runtime/doc/uganda.txt index 98d8170c29..a8c7fffc1a 100644 --- a/runtime/doc/uganda.txt +++ b/runtime/doc/uganda.txt @@ -1,4 +1,4 @@ -*uganda.txt* For Vim version 9.1. Last change: 2025 Nov 13 +*uganda.txt* For Vim version 9.1. Last change: 2026 Jan 07 VIM REFERENCE MANUAL by Bram Moolenaar @@ -21,7 +21,7 @@ ICCF Holland and Kuwasha~ |Bram| Moolenaar's charity, ICCF Holland, has long supported the education of children in Uganda through the Kibaale Children's Centre. Following Bram's -passing in 2023, ICCF Holland transfered all activities to its sister charity +passing in 2023, ICCF Holland transferred all activities to its sister charity Kuwasha in Canada and dissolved at the end of 2025. Donations from Vim users are still welcome and will continue to go directly to diff --git a/src/globals.h b/src/globals.h index 2aed9378e1..4d0ad6ca5f 100644 --- a/src/globals.h +++ b/src/globals.h @@ -2134,7 +2134,7 @@ INIT(= CLIENTSERVER_METHOD_NONE); EXTERN char_u *client_socket INIT(= NULL); #endif -// If the key should be propogated from vgetc() +// If the key should be propagated from vgetc() EXTERN int allow_osc_key INIT(= 0); #ifdef FEAT_EVAL diff --git a/src/os_win32.c b/src/os_win32.c index a518308f65..83f1b1ce3a 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5538,7 +5538,7 @@ mch_call_shell( } } // do not execute anything from the current directory by setting the - // environemnt variable $NoDefaultCurrentDirectoryInExePath + // environment variable $NoDefaultCurrentDirectoryInExePath oldval = vim_getenv((char_u *)"NoDefaultCurrentDirectoryInExePath", &must_free); vim_setenv((char_u *)"NoDefaultCurrentDirectoryInExePath", (char_u *)"1"); diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim index ec721d0579..9dba0b3f31 100644 --- a/src/testdir/test_functions.vim +++ b/src/testdir/test_functions.vim @@ -2161,9 +2161,9 @@ func Test_executable_single_character_dir() endif let save_path = $PATH - " a: single character name without path seperator - " b: single character name with path seperator - " c: single character name without path seperator at last of PATH + " a: single character name without path separator + " b: single character name with path separator + " c: single character name without path separator at last of PATH let $PATH = [ \ fnamemodify('./Xpath/a', ':p:h'), \ fnamemodify('./Xpath/b', ':p'), diff --git a/src/version.c b/src/version.c index 8f4e2fa6d5..6caed54fa2 100644 --- a/src/version.c +++ b/src/version.c @@ -734,6 +734,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2063, /**/ 2062, /**/ diff --git a/src/wayland.h b/src/wayland.h index d260af4a90..0a181541b4 100644 --- a/src/wayland.h +++ b/src/wayland.h @@ -46,7 +46,7 @@ struct vwl_seat_S { struct wl_seat *proxy; char *label; // Name of seat as text (e.g. seat0, // seat1...). - uint32_t capabilities; // Bitmask of the capabilites of the seat + uint32_t capabilities; // Bitmask of the capabilities of the seat // (pointer, keyboard, touch). };