# HG changeset patch # User vimboss # Date 1146691609 0 # Node ID 99305c4c42d4b75bd7af6f93e9847e5ad8f8cfe9 # Parent ca82de29ac1903bb1295c04da5624cf295b6447c updated for version 7.0g02 diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt --- a/runtime/doc/eval.txt +++ b/runtime/doc/eval.txt @@ -1,4 +1,4 @@ -*eval.txt* For Vim version 7.0g. Last change: 2006 May 01 +*eval.txt* For Vim version 7.0g. Last change: 2006 May 03 VIM REFERENCE MANUAL by Bram Moolenaar @@ -2345,9 +2345,14 @@ exists({expr}) The result is a Number, w < There must be no space between the symbol (&/$/*/#) and the name. Trailing characters that can't be part of the name are often - ignored, but don't depend on it. - Note that the argument must be a string, not the name of the - variable itself! For example: > + ignored, but don't depend on it, it may change in the future! + Example: > + exists("*strftime()") +< This currently works, but it should really be: > + exists("*strftime") + +< Note that the argument must be a string, not the name of the + variable itself. For example: > exists(bufcount) < This doesn't check for existence of the "bufcount" variable, but gets the value of "bufcount", and checks if that exists. diff --git a/runtime/doc/gui.txt b/runtime/doc/gui.txt --- a/runtime/doc/gui.txt +++ b/runtime/doc/gui.txt @@ -1,4 +1,4 @@ -*gui.txt* For Vim version 7.0g. Last change: 2006 Apr 02 +*gui.txt* For Vim version 7.0g. Last change: 2006 May 03 VIM REFERENCE MANUAL by Bram Moolenaar @@ -588,12 +588,21 @@ The ":set ic" will not be echoed when us executed command are still given though. To shut them up too, add a ":silent" in the executed command: > :menu Search.Header :exe ":silent normal /Header\r" -< +"" may also appear just after "" or "