updated for version 7.0022
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index d6da62f..cd48687 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.0aa.  Last change: 2004 Dec 09
+*todo.txt*      For Vim version 7.0aa.  Last change: 2004 Dec 11
 
 
 		  VIM REFERENCE MANUAL	  by Bram Moolenaar
@@ -30,17 +30,8 @@
 							*known-bugs*
 -------------------- Known bugs and current work -----------------------
 
-Add a function to test if a font name actually works.
-
-When using "set laststatus=2 cmdheight=2" in the .gvimrc you only get one line
-for the cmdline. (Christian Robinson)  When the Vim window is resized (e.g.,
-xterm with many lines) it's OK.
-
 ":e <cfile>" does not expand ~/file, very confusing compared to ":e ~/file".
 
-SIGHUP is delayed until waiting for a character.  Can the same thing be done
-for SIGINT?  Then also check when waiting for a short time.
-
 When no termcap/termlib library is found, check that compiling Vim works in
 configure.  Give an clear error message ("install termcap or ncurses-dev
 package") when it doesn't.
@@ -1354,6 +1345,7 @@
 8   The quickfix file is read without conversion, thus in 'encoding'.  Add an
     option to specify the encoding of the errorfile and convert it.  Also for
     ":grep" and ":helpgrep".
+    More generic solution: support a filter (e.g., by calling a function).
 8   When a file was converted from 'fileencoding' to 'encoding', a tag search
     should also do this on the search pattern. (Andrzej M. Ostruszka)
 7   When converting a file fails, mention which byte could not be converted,
diff --git a/runtime/doc/version7.txt b/runtime/doc/version7.txt
index cdfb1a0..814752b 100644
--- a/runtime/doc/version7.txt
+++ b/runtime/doc/version7.txt
@@ -1,4 +1,4 @@
-*version7.txt*  For Vim version 7.0aa.  Last change: 2004 Dec 09
+*version7.txt*  For Vim version 7.0aa.  Last change: 2004 Dec 11
 
 
 		  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -166,6 +166,7 @@
 tr(expr, from, to)	|tr()|		Translate characters. (Ron Aaron)
 system(cmd, input)	|system()|	Filters {input} through a shell
 					command.
+getfontname([name])	|getfontname()| Get actual font name being used.
 
 
 New autocommand events: ~
@@ -223,6 +224,10 @@
 
 Mac: GUI font selector. (Peter "Rain Dog" Cucka)
 
+Mac: better integration with Xcode.  Post a fake mouse-up event after the odoc
+event and the drag receive handler to work around a stall after Vim loads a
+file.  Fixed an off-by-one line number error. (Da Woon Jung)
+
 The netrw plugin now also supports viewing a directory, when "scp://" is used.
 Deleting and renaming files is possible.  (Charles Campbell)
 
@@ -494,7 +499,11 @@
 
 When a telnet connection is dropped Vim preserves files and exits.  While
 doing that a SIGHUP may arrive and disturbe us, thus ignore it. (Scott
-Anderson)  Also postpone SIGHUP until it's safe to handle.  Added
-handle_sighup().
+Anderson)  Also postpone SIGHUP, SIGQUIT and SIGTERM until it's safe to
+handle.  Added handle_signal().
+
+When using "set laststatus=2 cmdheight=2" in the .gvimrc you may only get one
+line for the cmdline. (Christian Robinson)  Invoke command_height() after the
+GUI has started up.
 
  vim:tw=78:ts=8:ft=help:norl: