updated for version 7.0077
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index 9c3f0af..f86bb1b 100644
--- a/runtime/doc/eval.txt
+++ b/runtime/doc/eval.txt
@@ -1,4 +1,4 @@
-*eval.txt*      For Vim version 7.0aa.  Last change: 2005 May 22
+*eval.txt*      For Vim version 7.0aa.  Last change: 2005 May 31
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -3743,6 +3743,8 @@
 		removing the matched characters.
 		When the first or last item is empty it is omitted, unless the
 		{keepempty} argument is given and it's non-zero.
+		Other empty items are kept when {pattern} matches at least one
+		character or when {keepempty} is non-zero.
 		Example: >
 			:let words = split(getline('.'), '\W\+')
 <		To split a string in individual characters: >