comparison runtime/doc/eval.txt @ 28405:473cfd79bcd8 v8.2.4727

patch 8.2.4727: unused code Commit: https://github.com/vim/vim/commit/7765f5cf964c751cd780484220bb65773b1b0348 Author: Dominique Pelle <dominique.pelle@gmail.com> Date: Sun Apr 10 11:26:53 2022 +0100 patch 8.2.4727: unused code Problem: Unused code. Solution: Remove code and add #ifdefs. (Dominique Pell?, closes https://github.com/vim/vim/issues/10136)
author Bram Moolenaar <Bram@vim.org>
date Sun, 10 Apr 2022 12:30:05 +0200
parents 6dd88e45d47d
children 769599ee9f06
comparison
equal deleted inserted replaced
28404:95ce25a7224a 28405:473cfd79bcd8
179 *no-type-checking* 179 *no-type-checking*
180 You will not get an error if you try to change the type of a variable. 180 You will not get an error if you try to change the type of a variable.
181 181
182 182
183 1.2 Function references ~ 183 1.2 Function references ~
184 *Funcref* *E695* *E718* *E1086* *E1192* 184 *Funcref* *E695* *E718* *E1192*
185 A Funcref variable is obtained with the |function()| function, the |funcref()| 185 A Funcref variable is obtained with the |function()| function, the |funcref()|
186 function or created with the lambda expression |expr-lambda|. It can be used 186 function or created with the lambda expression |expr-lambda|. It can be used
187 in an expression in the place of a function name, before the parenthesis 187 in an expression in the place of a function name, before the parenthesis
188 around the arguments, to invoke the function it refers to. Example: > 188 around the arguments, to invoke the function it refers to. Example: >
189 189