diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-24 11:59:29 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-24 11:59:29 +0200 |
commit | 7db5fc838a7f701e495d41b0ff6a070591c84340 (patch) | |
tree | ac8f061dafa07580e8b6cf3fedcd290a9f43d3ac /runtime | |
parent | 55debbe38429b81c0ce6e8400aef36812eb151d7 (diff) | |
download | vim-7db5fc838a7f701e495d41b0ff6a070591c84340.zip |
Fix uninit memory read in undo code. Fix uint32_t in proto file.
A few minor changes.
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/todo.txt | 15 | ||||
-rw-r--r-- | runtime/doc/undo.txt | 5 |
2 files changed, 10 insertions, 10 deletions
diff --git a/runtime/doc/todo.txt b/runtime/doc/todo.txt index 49fc70a4d..e41a5da39 100644 --- a/runtime/doc/todo.txt +++ b/runtime/doc/todo.txt @@ -1084,9 +1084,14 @@ restored. (Luc St-Louis) Vim 7.3: +- Use NSIS 2.45, it includes Windows 7 support. + Include "RequestExecutionLevel highest" + Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi +- Supply a 64 bit version of gvimext.dll for 64 bit windows. + http://code.google.com/p/vim-win3264/ + Gvim can be 32 bit. Patches to include: -8 Persistent undo bugs / fixes: - - Add tests. Also with different 'enc' +- Persistent undo bugs / fixes: - Add undofile(name): get undo file name for buffer "name". - Extend test62 for gettabvar() and settabvar(). (Yegappan Lakshmanan, 2010 May 23) @@ -1152,12 +1157,6 @@ Patches to include: Patch for Make_ming.mak from Paul Moore (2008 Sep 1) http://code.google.com/p/vim-iflua/ Download vim72-lua-0.7.patch.gz Needs some work: -- Use NSIS 2.45, it includes Windows 7 support. - Include "RequestExecutionLevel highest" - Ron's version: http://dev.ronware.org/p/vim/finfo?name=gvim.nsi -- Supply a 64 bit version of gvimext.dll for 64 bit windows. - http://code.google.com/p/vim-win3264/ - Gvim can be 32 bit. - Have a look at patch to enable screen access from Python. (Marko Mahnic, 2010 Apr 12) - Patch for Python 3 support. (Roland Puntaier, 2009 Sep 22) diff --git a/runtime/doc/undo.txt b/runtime/doc/undo.txt index 05e5555b7..2c5568ea2 100644 --- a/runtime/doc/undo.txt +++ b/runtime/doc/undo.txt @@ -263,9 +263,10 @@ Reading an existing undo file may fail for several reasons: *E824* The version number of the undo file indicates that it's written by a newer version of Vim. You need that newer version to open it. Don't write the buffer if you want to keep the undo info in the file. -"Undo file contents changed" +"File contents changed, cannot use undo info" The file text differs from when the undo file was written. This means - the undo file cannot be used, it would corrupt the text. + the undo file cannot be used, it would corrupt the text. This also + happens when 'encoding' differs from when the undo file was written. *E825* *E826* The undo file does not contain valid contents and cannot be used. *E827* The magic number at the end of the file was not found. This usually |