Skip to content

Commit d161d7b

Browse files
committed
Merge remote-tracking branch 'vim/master'
2 parents 72c357d + eca99bd commit d161d7b

24 files changed

+3886
-12488
lines changed

runtime/doc/eval.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1739,6 +1739,8 @@ USAGE RESULT DESCRIPTION ~
17391739
abs( {expr}) Float or Number absolute value of {expr}
17401740
acos( {expr}) Float arc cosine of {expr}
17411741
add( {list}, {item}) List append {item} to |List| {list}
1742+
alloc_fail( {countdown}, {when}, {repeat})
1743+
nothing make memory allocation fail
17421744
and( {expr}, {expr}) Number bitwise AND
17431745
append( {lnum}, {string}) Number append {string} below line {lnum}
17441746
append( {lnum}, {list}) Number append lines {list} below line {lnum}
@@ -2118,6 +2120,13 @@ add({list}, {expr}) *add()*
21182120
Use |insert()| to add an item at another position.
21192121

21202122

2123+
alloc_fail({id}, {countdown}, {repeat}) *alloc_fail()*
2124+
This is for testing: If the memory allocation with {id} is
2125+
called, then decrement {countdown}, and when it reaches zero
2126+
let memory allocation fail {repeat} times. When {repeat} is
2127+
smaller than one it fails one time.
2128+
2129+
21212130
and({expr}, {expr}) *and()*
21222131
Bitwise AND on the two arguments. The arguments are converted
21232132
to a number. A List, Dict or Float argument causes an error.

runtime/optwin.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,7 @@ call append("$", "infercase\tadjust case of a keyword completion match")
809809
call append("$", "\t(local to buffer)")
810810
call <SID>BinOptionL("inf")
811811
if has("digraphs")
812-
call append("$", "digraph\tenable entering digraps with c1 <BS> c2")
812+
call append("$", "digraph\tenable entering digraphs with c1 <BS> c2")
813813
call <SID>BinOptionG("dg", &dg)
814814
endif
815815
call append("$", "tildeop\tthe \"~\" command behaves like an operator")
@@ -1214,7 +1214,7 @@ if has("arabic")
12141214
call <SID>BinOptionG("tbidi", &tbidi)
12151215
endif
12161216
if has("keymap")
1217-
call append("$", "keymap\tname of a keyboard mappping")
1217+
call append("$", "keymap\tname of a keyboard mapping")
12181218
call <SID>OptionL("kmp")
12191219
endif
12201220
if has("langmap")

runtime/spell/README_en.txt

Lines changed: 140 additions & 12167 deletions
Large diffs are not rendered by default.

runtime/spell/en.ascii.spl

-141 KB
Binary file not shown.

runtime/spell/en.ascii.sug

-40.6 KB
Binary file not shown.

runtime/spell/en.latin1.spl

-103 KB
Binary file not shown.

runtime/spell/en.latin1.sug

-1.01 KB
Binary file not shown.

runtime/spell/en.utf-8.spl

-103 KB
Binary file not shown.

runtime/spell/en.utf-8.sug

-1.01 KB
Binary file not shown.

0 commit comments

Comments
 (0)