Skip to content

Commit bff010b

Browse files
committed
Updated runtime files, include fixes for line continuation.
1 parent f56ba9d commit bff010b

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

runtime/doc/change.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ inside of strings can change! Also see 'softtabstop' option. >
980980
If no register is specified, it depends on the 'cb'
981981
option: If 'cb' contains "unnamedplus", paste from the
982982
+ register |quoteplus|. Otherwise, if 'cb' contains
983-
"unnamed", paste from the * register |quote_star|.
983+
"unnamed", paste from the * register |quotestar|.
984984
Otherwise, paste from the unnamed register
985985
|quote_quote|.
986986
The register can also be '=' followed by an optional

runtime/doc/options.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*options.txt* For Vim version 7.3. Last change: 2012 Mar 28
1+
*options.txt* For Vim version 7.3. Last change: 2012 Apr 26
22

33

44
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|.
71197119
the file should contain words with similar meaning, separated by
71207120
non-keyword characters (white space is preferred). Maximum line
71217121
length is 510 bytes.
7122-
To obtain a file to be used here, check out the wordlist FAQ at
7123-
http://www.hyphenologist.co.uk .
71247122
To include a comma in a file name precede it with a backslash. Spaces
71257123
after a comma are ignored, otherwise spaces are included in the file
71267124
name. See |option-backslash| about using backslashes.

runtime/doc/tags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6569,6 +6569,7 @@ lua-luaeval if_lua.txt /*lua-luaeval*
65696569
lua-vim if_lua.txt /*lua-vim*
65706570
lua-window if_lua.txt /*lua-window*
65716571
lua.vim syntax.txt /*lua.vim*
6572+
luaeval() eval.txt /*luaeval()*
65726573
m motion.txt /*m*
65736574
m' motion.txt /*m'*
65746575
m[ motion.txt /*m[*

runtime/doc/todo.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*todo.txt* For Vim version 7.3. Last change: 2012 Apr 25
1+
*todo.txt* For Vim version 7.3. Last change: 2012 Apr 26
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -43,6 +43,11 @@ Discussion about canonicalization of Hebrew. (Ron Aaron, 2011 April 10)
4343
Stack trace of crash: http://vpaste.net/GBt9S
4444
(Alexandre Provencio)
4545

46+
Patch for IBM z/OS makefile. (Stephen Bovy, 2012 Apr 26)
47+
48+
Test 77 fails if cksum uses tabs instead of spaces. (Michael Soyka, 2012 Apr
49+
25)
50+
4651
Once syntax and other runtime files have been fixed: add "set cp" to
4752
check.vim. Use a function to run both with 'cp' and 'nocp'.
4853

@@ -58,6 +63,7 @@ Stocker, 2012 Jan 5)
5863

5964
Patch for crash involving curwin->w_s. (Christian Brabandt, 2012 Apr 20)
6065
What is the cause? Leaks memory? Other solution?
66+
More debug info Apr 26.
6167

6268
Issue 54: document behavior of -complete, also expands arg.
6369

runtime/ftplugin/dosbatch.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ if has("gui_win32") && !exists("b:browsefilter")
2020
let b:browsefilter = "DOS Batch Files (*.bat, *.cmd)\t*.bat;*.cmd\nAll Files (*.*)\t*.*\n"
2121
endif
2222

23-
let b:undo_ftplugin = "setlocal comments< formatoptions<"
24-
\ . "| unlet! b:browsefiler"
23+
let b:undo_ftplugin = "setlocal comments< formatoptions< | unlet! b:browsefiler"

runtime/ftplugin/postscr.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ if has("gui_win32") && !exists("b:browsefilter")
3131
\ "All Files (*.*)\t*.*\n"
3232
endif
3333

34-
let &cpo = s:cpo_save
35-
unlet s:cpo_save
36-
3734
let b:undo_ftplugin = "setlocal comments< formatoptions<"
3835
\ . "| unlet! b:browsefiler b:match_ignorecase b:match_words"
36+
37+
let &cpo = s:cpo_save
38+
unlet s:cpo_save

0 commit comments

Comments
 (0)