aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-04-16 10:42:11 +0800
committerGitHub <noreply@github.com>2023-04-16 10:42:11 +0800
commit54dab9ed9e200f7c5bcac4a8f4901770fa15fa4f (patch)
treee07099845b2da8889f38a6f742ca8901f439782c /runtime
parent6adfd24a066c207334609a6b149ada19c0f568d4 (diff)
parentd7965293ec18314df284ef53c363b73c2f3c1db8 (diff)
downloadrneovim-54dab9ed9e200f7c5bcac4a8f4901770fa15fa4f.tar.gz
rneovim-54dab9ed9e200f7c5bcac4a8f4901770fa15fa4f.tar.bz2
rneovim-54dab9ed9e200f7c5bcac4a8f4901770fa15fa4f.zip
Merge pull request #23118 from zeertzjq/vim-8.2.3783
vim-patch:8.2.{1945,2848,2977,2978,3783,3786}
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/eval.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 1ff6e3c360..f80ca5346c 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -139,7 +139,7 @@ You will not get an error if you try to change the type of a variable.
1.2 Function references ~
- *Funcref* *E695* *E718*
+ *Funcref* *E695* *E718* *E1192*
A Funcref variable is obtained with the |function()| function, the |funcref()|
function or created with the lambda expression |expr-lambda|. It can be used
in an expression in the place of a function name, before the parenthesis
@@ -1236,7 +1236,7 @@ Note that the dot is also used for String concatenation. To avoid confusion
always put spaces around the dot for String concatenation.
-expr8(expr1, ...) |Funcref| function call
+expr8(expr1, ...) |Funcref| function call *E1085*
When expr8 is a |Funcref| type variable, invoke the function it refers to.