updated for version 7.2a
diff --git a/runtime/doc/hebrew.txt b/runtime/doc/hebrew.txt
index 966befe..600f277 100644
--- a/runtime/doc/hebrew.txt
+++ b/runtime/doc/hebrew.txt
@@ -1,4 +1,4 @@
-*hebrew.txt*    For Vim version 7.1.  Last change: 2003 May 11
+*hebrew.txt*    For Vim version 7.2a.  Last change: 2007 Jun 14
 
 
 	   VIM REFERENCE MANUAL    by Ron Aaron (and Avner Lottem)
@@ -7,11 +7,8 @@
 Hebrew Language support (options & mapping) for Vim		*hebrew*
 
 The supporting 'rightleft' functionality was originally created by Avner
-Lottem:
-   E-mail: alottem@iil.intel.com
-   Phone:  +972-4-8307322
-
-Ron Aaron <ron@ronware.org> is currently helping support these features.
+Lottem. <alottem at gmail dot com>  Ron Aaron <ron at ronware dot org> is
+currently helping support these features.
 
 {Vi does not have any of these commands}
 
diff --git a/runtime/doc/repeat.txt b/runtime/doc/repeat.txt
index 2361ddc..38a4857 100644
--- a/runtime/doc/repeat.txt
+++ b/runtime/doc/repeat.txt
@@ -1,4 +1,4 @@
-*repeat.txt*    For Vim version 7.1.  Last change: 2007 Jan 07
+*repeat.txt*    For Vim version 7.2a.  Last change: 2007 Aug 12
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -89,10 +89,11 @@
 	:%s/pat/PAT/g
 Which is two characters shorter!
 
-A special case is using ":visual" as a command.  This will move to a matching
-line, go to Normal mode to let you execute commands there until you use |Q| to
-return to Ex mode.  This will be repeated for each matching line.  While doing
-this you cannot use ":global".
+When using "global" in Ex mode, a special case is using ":visual" as a
+command.  This will move to a matching line, go to Normal mode to let you
+execute commands there until you use |Q| to return to Ex mode.  This will be
+repeated for each matching line.  While doing this you cannot use ":global".
+To abort this type CTRL-C twice.
 
 ==============================================================================
 3. Complex repeats					*complex-repeat*
diff --git a/runtime/doc/starting.txt b/runtime/doc/starting.txt
index b58dade..c017fb4 100644
--- a/runtime/doc/starting.txt
+++ b/runtime/doc/starting.txt
@@ -1,4 +1,4 @@
-*starting.txt*  For Vim version 7.1.  Last change: 2007 Aug 14
+*starting.txt*  For Vim version 7.2a.  Last change: 2008 Jun 21
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -1386,10 +1386,14 @@
 
 	vim -c "normal '0"
 
-In a shell you could make an alias for it: >
+In a csh compatible shell you could make an alias for it: >
 
 	alias lvim vim -c '"'normal "'"0'"'
 
+For a bash-like shell: >
+
+	alias lvim='vim -c "normal '\''0"'
+
 Use the "r" flag in 'viminfo' to specify for which files no marks should be
 remembered.
 
diff --git a/runtime/doc/usr_23.txt b/runtime/doc/usr_23.txt
index 59c5c52..e0aa05d 100644
--- a/runtime/doc/usr_23.txt
+++ b/runtime/doc/usr_23.txt
@@ -1,4 +1,4 @@
-*usr_23.txt*	For Vim version 7.1.  Last change: 2006 Apr 24
+*usr_23.txt*	For Vim version 7.2a.  Last change: 2006 Apr 24
 
 		     VIM USER MANUAL - by Bram Moolenaar