updated for version 7.1a
diff --git a/runtime/doc/usr_05.txt b/runtime/doc/usr_05.txt
index 8d2b88e..a9780c0 100644
--- a/runtime/doc/usr_05.txt
+++ b/runtime/doc/usr_05.txt
@@ -1,4 +1,4 @@
-*usr_05.txt*	For Vim version 7.0.  Last change: 2006 Apr 24
+*usr_05.txt*	For Vim version 7.1a.  Last change: 2006 Jul 10
 
 		     VIM USER MANUAL - by Bram Moolenaar
 
@@ -202,8 +202,8 @@
 defines that when the file type is set to "text" the following command is
 automatically executed.  "setlocal textwidth=78" sets the 'textwidth' option
 to 78, but only locally in one file.
->
 
+							*restore-cursor*  >
 	autocmd BufReadPost *
 	    \ if line("'\"") > 0 && line("'\"") <= line("$") |
 	    \   exe "normal g`\"" |