updated for version 7.0043
diff --git a/runtime/doc/eval.txt b/runtime/doc/eval.txt
index bcd71c0..3eeb98f 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 Jan 19
+*eval.txt*      For Vim version 7.0aa.  Last change: 2005 Jan 20
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -4413,7 +4413,12 @@
 			List item.
 							*E106*
 :let {var-name}	..	List the value of variable {var-name}.  Multiple
-			variable names may be given.
+			variable names may be given.  Special names recognized
+			here:				*E738*
+			  g:	global variables.
+			  b:	local buffer variables.
+			  w:	local window variables.
+			  v:	Vim variables.
 
 :let			List the values of all variables.  The type of the
 			variable is indicated before the value:
diff --git a/runtime/doc/quickfix.txt b/runtime/doc/quickfix.txt
index 57ea91f..efec796 100644
--- a/runtime/doc/quickfix.txt
+++ b/runtime/doc/quickfix.txt
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 10
+*quickfix.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 20
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -288,6 +288,8 @@
 - 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!
 
 
 5.1 using Vim's internal grep
@@ -303,6 +305,8 @@
 			'ignorecase' applies.  To overrule it use |/\c| to
 			ignore case or |/\C| to match case.  'smartcase' is
 			not used.
+			Every second or so the searched file name is displayed
+			to give you an idea of the progress made.
 			Examples: >
 				:vimgrep /an error/ *.c
 				:vimgrep /\<FileName\>/ *.h include/*
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index 705b50f..39fbd44 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -1,4 +1,4 @@
-*starting.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 07
+*starting.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 20
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1193,7 +1193,7 @@
 			When [file] is omitted or is a number from 1 to 9, a
 			name is generated and 'viewdir' prepended.  When last
 			directory name in 'viewdir' does not exist, this
-			directory is created.
+			directory is created.			*E738*
 			An existing file is always overwritten then.  Use
 			|:loadview| to load this view again.
 			When [file] is the name of a file ('viewdir' is not
diff --git a/runtime/doc/tags b/runtime/doc/tags
index 49d0f2d..8944418 100644
--- a/runtime/doc/tags
+++ b/runtime/doc/tags
@@ -2036,13 +2036,16 @@
 :lefta	windows.txt	/*:lefta*
 :leftabove	windows.txt	/*:leftabove*
 :let	eval.txt	/*:let*
+:let+=	eval.txt	/*:let+=*
 :let-$	eval.txt	/*:let-$*
+:let-=	eval.txt	/*:let-=*
 :let-@	eval.txt	/*:let-@*
 :let-environment	eval.txt	/*:let-environment*
 :let-option	eval.txt	/*:let-option*
 :let-register	eval.txt	/*:let-register*
 :let-star	eval.txt	/*:let-star*
 :let-unpack	eval.txt	/*:let-unpack*
+:let.=	eval.txt	/*:let.=*
 :list	various.txt	/*:list*
 :lm	map.txt	/*:lm*
 :lmap	map.txt	/*:lmap*
@@ -3634,6 +3637,7 @@
 E733	eval.txt	/*E733*
 E735	eval.txt	/*E735*
 E736	eval.txt	/*E736*
+E737	eval.txt	/*E737*
 E74	message.txt	/*E74*
 E75	vi_diff.txt	/*E75*
 E76	pattern.txt	/*E76*
@@ -5034,7 +5038,6 @@
 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 70a783d..06186f9 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jan 19
+*todo.txt*      For Vim version 7.0aa.  Last change: 2005 Jan 21
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -30,10 +30,12 @@
 							*known-bugs*
 -------------------- Known bugs and current work -----------------------
 
-Hashtable implementation:
-- Use hashtable for variables and syntax keywords.
+Dict member: use dict..foo instead of dict.foo to avoid confusion with string
+concatenation?
 
-":grep": display progress (filename, every second or so)
+Hashtable implementation:
+- Use hashtable for syntax keywords.
+
 Can ":grep" made faster somehow?  Do profiling.
 
 Sanity check of eval.c:
diff --git a/runtime/doc/various.txt b/runtime/doc/various.txt
index 964016a..a04dd30 100644
--- a/runtime/doc/various.txt
+++ b/runtime/doc/various.txt
@@ -1,4 +1,4 @@
-*various.txt*   For Vim version 7.0aa.  Last change: 2004 Dec 23
+*various.txt*   For Vim version 7.0aa.  Last change: 2005 Jan 20
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -387,10 +387,13 @@
 :redi[r] @{a-zA-Z}	Redirect messages to register {a-z}.  Append to the
 			contents of the register if its name is given
 			uppercase {A-Z}.  {not in Vi}
+:redi[r] @{a-z}>	Append messages to register {a-z}. {not in Vi}
 
 :redi[r] @*		Redirect messages to the clipboard. {not in Vi}
+:redi[r] @*>		Append messages to the clipboard. {not in Vi}
 
 :redi[r] @"		Redirect messages to the unnamed register. {not in Vi}
+:redi[r] @">		Append messages to the unnamed register. {not in Vi}
 
 :redi[r] END		End redirecting messages.  {not in Vi}
 
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index f2ca967..4865bb5 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 17
+*version7.txt*  For Vim version 7.0aa.  Last change: 2005 Jan 20
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -418,6 +418,14 @@
 
 Removed the tcltags script, it's obsolete.
 
+":redir @*>" and ":redir @+>" append to the clipboard.  Better check for
+invalid characters after the register name.
+
+":let g:" lists global variables.
+":let b:" lists buffer-local variables.
+":let w:" lists window-local variables.
+":let v:" lists Vim variables.
+
 ==============================================================================
 COMPILE TIME CHANGES					*compile-changes-7*