updated for version 7.0207
diff --git a/runtime/doc/usr_08.txt b/runtime/doc/usr_08.txt
index c4212ef..160bf65 100644
--- a/runtime/doc/usr_08.txt
+++ b/runtime/doc/usr_08.txt
@@ -1,4 +1,4 @@
-*usr_08.txt*	For Vim version 7.0aa.  Last change: 2006 Feb 24
+*usr_08.txt*	For Vim version 7.0aa.  Last change: 2006 Feb 25
 
 		     VIM USER MANUAL - by Bram Moolenaar
 
@@ -520,7 +520,7 @@
 window.  And you will notice a bar at the top with the two file names:
 
 	+----------------------------------+
-	|_thisfile_| thatfile ____________X|
+	| thisfile | /thatfile/ __________X|    (thatfile is bold)
 	|/* thatfile */  		   |
 	|that				   |
 	|that				   |
@@ -537,7 +537,7 @@
 Now use the mouse to click on "thisfile" in the top line.  The result is
 
 	+----------------------------------+
-	| thisfile |_thatfile_____________X|
+	| /thisfile/ | thatfile __________X|    (thisfile is bold)
 	|/* thisfile */  		   |
 	|this				   |
 	|this				   |
@@ -559,7 +559,7 @@
 the window we were in:
 
 	+-------------------------------------+
-	|_thisfile_| thisfile | _thatfile____X|
+	| thisfile | /thisfile/ | thatfile __X|   (thisfile is bold)
 	|/* thisfile */  		      |
 	|this				      |
 	|this				      |
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim
index 0e659a1..f480301 100644
--- a/runtime/syntax/vim.vim
+++ b/runtime/syntax/vim.vim
@@ -128,7 +128,7 @@
 syn match  vimOper	"||\|&&\|[-+.]"	skipwhite nextgroup=vimString,vimSpecFile
 syn region vimOperParen 	matchgroup=vimOper start="(" end=")" contains=@vimOperGroup
 syn region vimOperParen	matchgroup=vimSep  start="{" end="}" contains=@vimOperGroup nextgroup=vimVar
-syn match  vimOperOk	"\<[aiAIrR][()]"
+syn match  vimOperOk	"\<[aiAIrR][()]" contained
 if !exists("g:vimsyntax_noerror")
  syn match  vimOperError	")"
 endif