]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
Updated runtime files, include fixes for line continuation.
authorBram Moolenaar <Bram@vim.org>
Thu, 26 Apr 2012 18:17:03 +0000 (20:17 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 26 Apr 2012 18:17:03 +0000 (20:17 +0200)
runtime/doc/change.txt
runtime/doc/options.txt
runtime/doc/tags
runtime/doc/todo.txt
runtime/ftplugin/dosbatch.vim
runtime/ftplugin/postscr.vim

index 0148330535e2637d6b612e88f62aba98665845e4..bb11f9cad5d3d45d271683cc6aef8d3cfabd8598 100644 (file)
@@ -980,7 +980,7 @@ inside of strings can change!  Also see 'softtabstop' option. >
                        If no register is specified, it depends on the 'cb'
                        option: If 'cb' contains "unnamedplus", paste from the
                        + register |quoteplus|.  Otherwise, if 'cb' contains
-                       "unnamed", paste from the * register |quote_star|.
+                       "unnamed", paste from the * register |quotestar|.
                        Otherwise, paste from the unnamed register
                        |quote_quote|.
                        The register can also be '=' followed by an optional
index 2c79617b2742ed3a0524da757429c31e73760fb3..1080431c2c4b80479445700fb26267d05ebfc60d 100644 (file)
@@ -1,4 +1,4 @@
-*options.txt*  For Vim version 7.3.  Last change: 2012 Mar 28
+*options.txt*  For Vim version 7.3.  Last change: 2012 Apr 26
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -7119,8 +7119,6 @@ A jump table for the options with a short description can be found at |Q_op|.
        the file should contain words with similar meaning, separated by
        non-keyword characters (white space is preferred).  Maximum line
        length is 510 bytes.
-       To obtain a file to be used here, check out the wordlist FAQ at
-       http://www.hyphenologist.co.uk .
        To include a comma in a file name precede it with a backslash.  Spaces
        after a comma are ignored, otherwise spaces are included in the file
        name.  See |option-backslash| about using backslashes.
index 119fdf5d7904d4a12b97afd52b2dcdc728c60bad..8457aec5e30133aeb7701af42ed6ff2ac226f1f8 100644 (file)
@@ -6569,6 +6569,7 @@ lua-luaeval       if_lua.txt      /*lua-luaeval*
 lua-vim        if_lua.txt      /*lua-vim*
 lua-window     if_lua.txt      /*lua-window*
 lua.vim        syntax.txt      /*lua.vim*
+luaeval()      eval.txt        /*luaeval()*
 m      motion.txt      /*m*
 m'     motion.txt      /*m'*
 m[     motion.txt      /*m[*
index 7ee7b3617f36b2185e74edcc5570f4c3ed9bdd6e..cdd74fbc47d2b78ab68958be962c9f1ee6767abd 100644 (file)
@@ -1,4 +1,4 @@
-*todo.txt*      For Vim version 7.3.  Last change: 2012 Apr 25
+*todo.txt*      For Vim version 7.3.  Last change: 2012 Apr 26
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -43,6 +43,11 @@ Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
 Stack trace of crash: http://vpaste.net/GBt9S
 (Alexandre Provencio)
 
+Patch for IBM z/OS makefile. (Stephen Bovy, 2012 Apr 26)
+
+Test 77 fails if cksum uses tabs instead of spaces. (Michael Soyka, 2012 Apr
+25)
+
 Once syntax and other runtime files have been fixed: add "set cp" to
 check.vim.  Use a function to run both with 'cp' and 'nocp'.
 
@@ -58,6 +63,7 @@ Stocker, 2012 Jan 5)
 
 Patch for crash involving curwin->w_s. (Christian Brabandt, 2012 Apr 20)
 What is the cause?  Leaks memory?  Other solution?
+More debug info Apr 26.
 
 Issue 54: document behavior of -complete, also expands arg.
 
index 7662896c4f24f9cbbb849b560e142ad05e42cd4f..d83dc3b7977e2cf6ee7397b657b774c516638117 100644 (file)
@@ -20,5 +20,4 @@ if has("gui_win32") && !exists("b:browsefilter")
   let b:browsefilter = "DOS Batch Files (*.bat, *.cmd)\t*.bat;*.cmd\nAll Files (*.*)\t*.*\n"
 endif
 
-let b:undo_ftplugin = "setlocal comments< formatoptions<"
-    \ . "| unlet! b:browsefiler"
+let b:undo_ftplugin = "setlocal comments< formatoptions< | unlet! b:browsefiler"
index 505f08f862384917c701dc2c23f8cacb59ce873d..3bdd2e6ffa59e820916bd4caca7ac3e4d7c7d3e7 100644 (file)
@@ -31,8 +31,8 @@ if has("gui_win32") && !exists("b:browsefilter")
     \ "All Files (*.*)\t*.*\n"
 endif
 
-let &cpo = s:cpo_save
-unlet s:cpo_save
-
 let b:undo_ftplugin = "setlocal comments< formatoptions<"
     \ . "| unlet! b:browsefiler b:match_ignorecase b:match_words"
+
+let &cpo = s:cpo_save
+unlet s:cpo_save