updated for version 7.0c11
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index 75c0522..d24c5c2 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.0c.  Last change: 2006 Apr 05
+*todo.txt*      For Vim version 7.0c.  Last change: 2006 Apr 06
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -31,17 +31,13 @@
 -------------------- Known bugs and current work -----------------------
 
 New Hungarian dictionary. (Laci Nemeth)
--   Support flags on a suffix used for second level affixes.
-    The flags may also be used for compounding.  Default is an OR
-    mechanism with the flags of the word.
-    Adding "compset" flag on the affixes means the compound flags of the word
-    are not used?
-
--   implement use of CHECKCOMPOUND* flags, <compoptions> in .spl file
-
+-   implement use of <compoptions> in .spl file:
+-   implement CHECKCOMPOUNDREP: when a compound word seems to be OK apply REP
+    items and theck if the result is a valid word.
+-   implement CHECKCOMPOUNDDUP
+-   implement CHECKCOMPOUNDTRIPLE
 -   Add CHECKCOMPOUNDCASE: when compounding make leading capital lower case.
     How is it supposed to work?
-
 -   implement using CHECKCOMPOUNDPATTERN: match words with sl_comppat[].
 
 Obey 'switchbuf' "useopen" value for windows in other tabs, e.g. for :sbuffer.
@@ -1113,6 +1109,8 @@
 -   Add a command the repeats ]s and z=, showing the misspelled word in its
     context.  Thus to spell-check a whole file.
 -   suggestion for "KG" to "kg" when it's keepcase.
+-   For flags on affixes: Use a "AFFCOMPSET" flag; means the compound flags of
+    the word are not used.
 -   Support breakpoint character ? 0xb7 and ignore it?  Makes it possible to
     use same wordlist for hyphenation.
 -   Compound word is accepted if nr of words is <= COMPOUNDWORDMAX OR nr of
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index 8e55aac..1005781 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0c.  Last change: 2006 Apr 05
+*version7.txt*  For Vim version 7.0c.  Last change: 2006 Apr 06
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -2385,4 +2385,13 @@
 When a line wraps, 'cursorcolumn' was never displayed past the end of the
 line.
 
+'autochdir' was only available when compiled with NetBeans and GUI.  Now it's
+a separate feature, also available in the "big" version.
+
+Added CTRL-W gf: open file under cursor in new tab page.
+
+When using the menu in the tab pages line, "New Tab" opens the new tab before
+where the click was.  Beyond the labels the new tab appears at the end instead
+of after the current tab page.
+
  vim:tw=78:ts=8:ft=help:norl:
diff --git a/runtime/syntax/help.vim b/runtime/syntax/help.vim
index a24455a..c511a58 100644
--- a/runtime/syntax/help.vim
+++ b/runtime/syntax/help.vim
@@ -1,14 +1,14 @@
 " Vim syntax file
 " Language:	Vim help file
 " Maintainer:	Bram Moolenaar (Bram@vim.org)
-" Last Change:	2006 Mar 29
+" Last Change:	2006 Apr 06
 
 " Quit when a (custom) syntax file was already loaded
 if exists("b:current_syntax")
   finish
 endif
 
-syn match helpHeadline		"^[-A-Z ]\+[ \t]\+\*"me=e-1
+syn match helpHeadline		"^[-A-Z .]\+[ \t]\+\*"me=e-1
 syn match helpSectionDelim	"^=\{3,}.*===$"
 syn match helpSectionDelim	"^-\{3,}.*--$"
 syn region helpExample		matchgroup=helpIgnore start=" >$" start="^>$" end="^[^ \t]"me=e-1 end="^<"