One more fix for conceal patch.
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt
index c1999cb..a69f8ea 100644
--- a/runtime/doc/todo.txt
+++ b/runtime/doc/todo.txt
@@ -1084,18 +1084,12 @@
 
 
 Vim 7.3:
-- Included conceal patch.
-    HL disappears in other window:
-	:sp
-	:ownsyntax perl
-	:e
-    Documentation update:
-	remove w:ownsyntax, automatically set w:current_syntax to the value of
-	b:current_syntax after loading a syntax file.  :ownsyntax only sets
-	w:current_syntax.
 - using NSIS 2.46: install on Windows 7 works, but no "Edit with Vim" menu.
    Use register_shell_extension()? (George Reilly, 2010 May 26)
    Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi
+- Update for crypt code to use salt. (Mohsin May 30)
+    Make the strengthen_key value 10000, equivalent to crypting 10 Kbyte of
+    text.
 - Also crypt the swap file, each block separately.  Change mf_write() and
     mf_read().
     - How to get b_p_key to these functions?  -> Store buf_T pointer in mfp.
@@ -1106,9 +1100,6 @@
     - Fill the gaps in the block with random bytes, otherwise it's easy to
       check for correct password by finding NUL bytes.
     - Verify recovery works.
-- Update for crypt code to use salt. (Mohsin May 30)
-    Make the strengthen_key value configurable and store it in the header?
-    Or just use 10000, equivalent to crypting 10 Kbyte of text.
 - undofile: keep markers where the file was written/read, so that it's easy to
   go back to a saved version of the file:  ":earlier 1f" (f for file)?
   Also add ":earlier 1d" (d for day).