summaryrefslogtreecommitdiffstats
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2010-08-04 17:49:30 +0200
committerBram Moolenaar <Bram@vim.org>2010-08-04 17:49:30 +0200
commit1affd7247133a2bf74f0986e17ea71b8dc0e77cd (patch)
tree2ac5b9da75c30bab8d39ee1373541ad2bc483b95 /runtime/doc/eval.txt
parent80a7dcf8b5af473af674fb47769accc40e67cac0 (diff)
Preparations for 7.3d release.
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index bbb8a173f1..8048a54d8c 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.3d. Last change: 2010 Jul 28
+*eval.txt* For Vim version 7.3d. Last change: 2010 Aug 04
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -535,6 +535,10 @@ remaining that refers to it.
It is not necessary to use the "dict" attribute for a numbered function.
+If you get an error for a numbered function, you can find out what it is with
+a trick. Assuming the function is 42, the command is: >
+ :function {42}
+
Functions for Dictionaries ~
*E715*