Skip to content

Commit da1c431

Browse files
zeertzjqchrisbra
authored andcommitted
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 <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
1 parent e7bb907 commit da1c431

8 files changed

Lines changed: 14 additions & 12 deletions

File tree

runtime/doc/insert.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*insert.txt* For Vim version 9.1. Last change: 2025 Nov 09
1+
*insert.txt* For Vim version 9.1. Last change: 2026 Jan 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1720,7 +1720,7 @@ Complete:
17201720
Notes
17211721

17221722
- It doesn't complete command arguments that rely on 'shellcmd' completion
1723-
type in Windows and WSL due to general slowness of canditate gathering,
1723+
type in Windows and WSL due to general slowness of candidate gathering,
17241724
e.g.
17251725
>
17261726
terminal dir

runtime/doc/options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 9.1. Last change: 2025 Dec 27
1+
*options.txt* For Vim version 9.1. Last change: 2026 Jan 07
22

33

44
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|.
81418141
when it is turned off. It is also reset when 'compatible' is set.
81428142

81438143
The 'L' flag in 'cpoptions' alters tab behavior when 'list' is
8144-
enabled. See also |ins-expandtab| ans user manual section |30.5| for
8144+
enabled. See also |ins-expandtab| and user manual section |30.5| for
81458145
in-depth explanations.
81468146

81478147
If Vim is compiled with the |+vartabs| feature then the value of

runtime/doc/uganda.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*uganda.txt* For Vim version 9.1. Last change: 2025 Nov 13
1+
*uganda.txt* For Vim version 9.1. Last change: 2026 Jan 07
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -21,7 +21,7 @@ ICCF Holland and Kuwasha~
2121

2222
|Bram| Moolenaar's charity, ICCF Holland, has long supported the education of
2323
children in Uganda through the Kibaale Children's Centre. Following Bram's
24-
passing in 2023, ICCF Holland transfered all activities to its sister charity
24+
passing in 2023, ICCF Holland transferred all activities to its sister charity
2525
Kuwasha in Canada and dissolved at the end of 2025.
2626

2727
Donations from Vim users are still welcome and will continue to go directly to

src/globals.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2134,7 +2134,7 @@ INIT(= CLIENTSERVER_METHOD_NONE);
21342134
EXTERN char_u *client_socket INIT(= NULL);
21352135
#endif
21362136

2137-
// If the <xOSC> key should be propogated from vgetc()
2137+
// If the <xOSC> key should be propagated from vgetc()
21382138
EXTERN int allow_osc_key INIT(= 0);
21392139

21402140
#ifdef FEAT_EVAL

src/os_win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5538,7 +5538,7 @@ mch_call_shell(
55385538
}
55395539
}
55405540
// do not execute anything from the current directory by setting the
5541-
// environemnt variable $NoDefaultCurrentDirectoryInExePath
5541+
// environment variable $NoDefaultCurrentDirectoryInExePath
55425542
oldval = vim_getenv((char_u *)"NoDefaultCurrentDirectoryInExePath",
55435543
&must_free);
55445544
vim_setenv((char_u *)"NoDefaultCurrentDirectoryInExePath", (char_u *)"1");

src/testdir/test_functions.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2161,9 +2161,9 @@ func Test_executable_single_character_dir()
21612161
endif
21622162

21632163
let save_path = $PATH
2164-
" a: single character name without path seperator
2165-
" b: single character name with path seperator
2166-
" c: single character name without path seperator at last of PATH
2164+
" a: single character name without path separator
2165+
" b: single character name with path separator
2166+
" c: single character name without path separator at last of PATH
21672167
let $PATH = [
21682168
\ fnamemodify('./Xpath/a', ':p:h'),
21692169
\ fnamemodify('./Xpath/b', ':p'),

src/version.c

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

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
2063,
737739
/**/
738740
2062,
739741
/**/

src/wayland.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ struct vwl_seat_S {
4646
struct wl_seat *proxy;
4747
char *label; // Name of seat as text (e.g. seat0,
4848
// seat1...).
49-
uint32_t capabilities; // Bitmask of the capabilites of the seat
49+
uint32_t capabilities; // Bitmask of the capabilities of the seat
5050
// (pointer, keyboard, touch).
5151
};
5252

0 commit comments

Comments
 (0)