updated for version 7.0218
diff --git a/runtime/doc/options.txt b/runtime/doc/options.txt
index c7ff8f5..61ce342 100644
--- a/runtime/doc/options.txt
+++ b/runtime/doc/options.txt
@@ -1,4 +1,4 @@
-*options.txt*	For Vim version 7.0aa.  Last change: 2006 Mar 06
+*options.txt*	For Vim version 7.0aa.  Last change: 2006 Mar 08
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -5020,6 +5020,9 @@
 			global
 	Allows for mappings to work recursively.  If you do not want this for
 	a single entry, use the :noremap[!] command.
+	NOTE: To avoid portability problems with Vim scripts, always keep
+	this option at the default "on".  Only switch it off when working with
+	old Vi scripts.
 
 						*'report'*
 'report'		number	(default 2)
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 5a83700..76e0454 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 7.0aa.  Last change: 2006 Mar 07
+*quickfix.txt*  For Vim version 7.0aa.  Last change: 2006 Mar 08
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -478,8 +478,13 @@
 - Uses Vim search patterns.  Multi-line patterns can be used.
 - When plugins are enabled: compressed and remote files can be searched.
 	|gzip| |netrw|
-- When 'hidden' is set the files are kept loaded, thus repeating a search is
-  much faster.  Uses a lot of memory though!
+
+To be able to do this Vim loads each file as if it is being edited.  When
+there is no match in the file the assicated buffer is wiped out again.  The
+'hidden' option is ignored here to avoid running out of memory or file
+descriptors when searching many files.  However, when the |:hide| command
+modifier is used the buffers are kept loaded.  This makes following searches
+in the same files a lot faster.
 
 
 5.1 using Vim's internal grep
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 6333ad6..9cc30ea 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -5484,6 +5484,7 @@
 hebrew.txt	hebrew.txt	/*hebrew.txt*
 help	various.txt	/*help*
 help-context	help.txt	/*help-context*
+help-tags	tags	1
 help-translated	various.txt	/*help-translated*
 help-xterm-window	various.txt	/*help-xterm-window*
 help.txt	help.txt	/*help.txt*
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index f77de5a..d3490ff 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.0aa.  Last change: 2006 Mar 07
+*todo.txt*      For Vim version 7.0aa.  Last change: 2006 Mar 08
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -30,6 +30,13 @@
 							*known-bugs*
 -------------------- Known bugs and current work -----------------------
 
+Bug in Netbeans interface. (Xavier de Gaye, 2006 Mar 7)
+Code for "insert" is wrong.  Don't use b_p_eol or b_start_eol.
+Handle partial lines properly.  What probably should happen is to append to a
+line when "off" points to the NUL after that line, insert before a line when
+the text doesn't end in a "\n" and only insert line breaks where there is a
+"\n" in the argument.
+
 Win32: Describe how to do debugging and describe it. (George Reilly)
 
 Mac unicode patch (Da Woon Jung):
@@ -45,8 +52,6 @@
 - With 'nopaste' pasting is wrong, with 'paste' Command-V doesn't work.
   (Alan Schmitt)
 
-Bug in Netbeans interface. (Xavier de Gaye, 2006 Mar 7)
-
 CONSIDERED FOR VERSION 7.0:
 
 Omni completion:
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 73ec459..ec4d23d 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0aa.  Last change: 2006 Mar 07
+*version7.txt*  For Vim version 7.0aa.  Last change: 2006 Mar 08
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1873,4 +1873,7 @@
 When a command was defined not to take arguments and no '|' no warning message
 would be given for using a '|'.  Also with ":loadkeymap".
 
+Motif: When using a fontset and 'encoding' is "utf-8" and sizeof(wchar_t) !=
+sizeof(XChar2b) then display was wrong. (Yukihiro Nakadaira)
+
  vim:tw=78:ts=8:ft=help:norl: