mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.1.0220: Few typos in source and test files
Problem: Typos in code and tests. Solution: Fix typos (zeertzjq). closes: #14321 Signed-off-by: zeertzjq <zeertzjq@outlook.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
3164cf8f12
commit
c029c131ea
@@ -2172,7 +2172,7 @@ init_users(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Function given to ExpandGeneric() to obtain an user names.
|
* Function given to ExpandGeneric() to obtain user names.
|
||||||
*/
|
*/
|
||||||
char_u*
|
char_u*
|
||||||
get_users(expand_T *xp UNUSED, int idx)
|
get_users(expand_T *xp UNUSED, int idx)
|
||||||
|
@@ -133,7 +133,7 @@ func Test_bdelete_cmd()
|
|||||||
call assert_fails('1,1bdelete 1 2', 'E488:')
|
call assert_fails('1,1bdelete 1 2', 'E488:')
|
||||||
call assert_fails('bdelete \)', 'E55:')
|
call assert_fails('bdelete \)', 'E55:')
|
||||||
|
|
||||||
" Deleting a unlisted and unloaded buffer
|
" Deleting an unlisted and unloaded buffer
|
||||||
edit Xbdelfile1
|
edit Xbdelfile1
|
||||||
let bnr = bufnr()
|
let bnr = bufnr()
|
||||||
set nobuflisted
|
set nobuflisted
|
||||||
|
@@ -254,7 +254,7 @@ func Test_history_crypt_key()
|
|||||||
set key& bs& ts&
|
set key& bs& ts&
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" The following used to overflow and causing an use-after-free
|
" The following used to overflow and causing a use-after-free
|
||||||
func Test_history_max_val()
|
func Test_history_max_val()
|
||||||
|
|
||||||
set history=10
|
set history=10
|
||||||
|
@@ -1130,7 +1130,7 @@ func Test_complete_wholeline_unlistedbuf()
|
|||||||
edit Xfile1
|
edit Xfile1
|
||||||
enew
|
enew
|
||||||
set complete=U
|
set complete=U
|
||||||
" completing from a unloaded buffer should fail
|
" completing from an unloaded buffer should fail
|
||||||
exe "normal! ia\<C-X>\<C-L>\<C-P>"
|
exe "normal! ia\<C-X>\<C-L>\<C-P>"
|
||||||
call assert_equal('a', getline(1))
|
call assert_equal('a', getline(1))
|
||||||
%d
|
%d
|
||||||
|
@@ -708,11 +708,11 @@ endfunc
|
|||||||
|
|
||||||
func Test_mkview_no_file_name()
|
func Test_mkview_no_file_name()
|
||||||
new
|
new
|
||||||
" :mkview or :mkview {nr} should fail in a unnamed buffer.
|
" :mkview or :mkview {nr} should fail in an unnamed buffer.
|
||||||
call assert_fails('mkview', 'E32:')
|
call assert_fails('mkview', 'E32:')
|
||||||
call assert_fails('mkview 1', 'E32:')
|
call assert_fails('mkview 1', 'E32:')
|
||||||
|
|
||||||
" :mkview {file} should succeed in a unnamed buffer.
|
" :mkview {file} should succeed in an unnamed buffer.
|
||||||
mkview Xview
|
mkview Xview
|
||||||
help
|
help
|
||||||
source Xview
|
source Xview
|
||||||
|
@@ -380,7 +380,7 @@ func Test_recover_encrypted_swap_file()
|
|||||||
call delete('Xfile1')
|
call delete('Xfile1')
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Test for :recover using a unreadable swap file
|
" Test for :recover using an unreadable swap file
|
||||||
func Test_recover_unreadable_swap_file()
|
func Test_recover_unreadable_swap_file()
|
||||||
CheckUnix
|
CheckUnix
|
||||||
CheckNotRoot
|
CheckNotRoot
|
||||||
|
@@ -874,7 +874,7 @@ func Regex_Mark()
|
|||||||
%d
|
%d
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
" Same test as abobe, but use verymagic
|
" Same test as above, but use verymagic
|
||||||
func Regex_Mark_Verymagic()
|
func Regex_Mark_Verymagic()
|
||||||
call append(0, ['', '', '', 'Marks:', 'asdfSasdfsadfEasdf', 'asdfSas',
|
call append(0, ['', '', '', 'Marks:', 'asdfSasdfsadfEasdf', 'asdfSas',
|
||||||
\ 'dfsadfEasdf', '', '', '', '', ''])
|
\ 'dfsadfEasdf', '', '', '', '', ''])
|
||||||
|
@@ -4906,7 +4906,7 @@ def Test_for_stmt_space_before_type()
|
|||||||
v9.CheckSourceFailure(lines, 'E1059: No white space allowed before colon: :number in range(10)', 2)
|
v9.CheckSourceFailure(lines, 'E1059: No white space allowed before colon: :number in range(10)', 2)
|
||||||
enddef
|
enddef
|
||||||
|
|
||||||
" This test used to cause an use-after-free memory access
|
" This test used to cause a use-after-free memory access
|
||||||
def Test_for_empty_line_after_lambda()
|
def Test_for_empty_line_after_lambda()
|
||||||
var lines =<< trim END
|
var lines =<< trim END
|
||||||
vim9script
|
vim9script
|
||||||
|
@@ -1149,7 +1149,7 @@ func Test_visual_inner_block()
|
|||||||
" try to select non-existing inner block
|
" try to select non-existing inner block
|
||||||
call cursor(5, 1)
|
call cursor(5, 1)
|
||||||
call assert_beeps('normal ViBiBiB')
|
call assert_beeps('normal ViBiBiB')
|
||||||
" try to select a unclosed inner block
|
" try to select an unclosed inner block
|
||||||
8,9d
|
8,9d
|
||||||
call cursor(5, 1)
|
call cursor(5, 1)
|
||||||
call assert_beeps('normal ViBiB')
|
call assert_beeps('normal ViBiB')
|
||||||
|
@@ -704,6 +704,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
220,
|
||||||
/**/
|
/**/
|
||||||
219,
|
219,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -3782,7 +3782,7 @@ object_call_builtin_method(
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Calls the object "empty()" method and returns the method retun value. In
|
* Calls the object "empty()" method and returns the method return value. In
|
||||||
* case of an error, returns TRUE.
|
* case of an error, returns TRUE.
|
||||||
*/
|
*/
|
||||||
int
|
int
|
||||||
|
Reference in New Issue
Block a user