summaryrefslogtreecommitdiff
path: root/runtime/doc/eval.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-10-21 03:02:54 +0200
committerBram Moolenaar <Bram@vim.org>2012-10-21 03:02:54 +0200
commit3a0d8090b1356833e1c80d22f36086c835604f42 (patch)
tree4e13cce7e070c209ea46201e12d849f45114d5fe /runtime/doc/eval.txt
parent67a4f6cfb4fe0f8e8cc576a4f4196573ccc5e3fb (diff)
downloadvim-git-3a0d8090b1356833e1c80d22f36086c835604f42.tar.gz
Updated runtime files.
Diffstat (limited to 'runtime/doc/eval.txt')
-rw-r--r--runtime/doc/eval.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 8934215eb..3afc3d0f7 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt* For Vim version 7.3. Last change: 2012 Sep 05
+*eval.txt* For Vim version 7.3. Last change: 2012 Oct 21
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -91,8 +91,8 @@ For boolean operators Numbers are used. Zero is FALSE, non-zero is TRUE.
Note that in the command >
:if "foo"
"foo" is converted to 0, which means FALSE. To test for a non-empty string,
-use strlen(): >
- :if strlen("foo")
+use empty(): >
+ :if !empty("foo")
< *E745* *E728* *E703* *E729* *E730* *E731*
List, Dictionary and Funcref types are not automatically converted.