]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-210 v7.0.210
authorBram Moolenaar <Bram@vim.org>
Thu, 8 Mar 2007 10:01:03 +0000 (10:01 +0000)
committerBram Moolenaar <Bram@vim.org>
Thu, 8 Mar 2007 10:01:03 +0000 (10:01 +0000)
runtime/doc/quickfix.txt
src/ex_cmds.h
src/version.c

index 73a34be0f238f7646120c1bca8a3398a5a00d534..7759f1895097f18617f30b7abcc3f038b094bf40 100644 (file)
@@ -1,4 +1,4 @@
-*quickfix.txt*  For Vim version 7.0.  Last change: 2006 Apr 30
+*quickfix.txt*  For Vim version 7.0.  Last change: 2006 Jul 18
 
 
                  VIM REFERENCE MANUAL    by Bram Moolenaar
@@ -178,15 +178,16 @@ command with 'l'.
                        current window is used instead of the quickfix list.
 
                                                *:cb* *:cbuffer* *E681*
-:cb[uffer] [bufnr]     Read the error list from the current buffer.
+:cb[uffer][!] [bufnr]  Read the error list from the current buffer.
                        When [bufnr] is given it must be the number of a
                        loaded buffer.  That buffer will then be used instead
                        of the current buffer.
                        A range can be specified for the lines to be used.
                        Otherwise all lines in the buffer are used.
+                       See |:cc| for [!].
 
                                                *:lb* *:lbuffer*
-:lb[uffer] [bufnr]     Same as ":cbuffer", except the location list for the
+:lb[uffer][!] [bufnr]  Same as ":cbuffer", except the location list for the
                        current window is used instead of the quickfix list.
 
                                                *:cgetb* *:cgetbuffer*
index 8c8db08cbca11a1a864304159fc12d07e0092c2b..d06e031819f2b5106053e2f037e5f168170064df 100644 (file)
@@ -198,7 +198,7 @@ EX(CMD_call,                "call",         ex_call,
 EX(CMD_catch,          "catch",        ex_catch,
                        EXTRA|SBOXOK|CMDWIN),
 EX(CMD_cbuffer,                "cbuffer",      ex_cbuffer,
-                       RANGE|NOTADR|WORD1|TRLBAR),
+                       BANG|RANGE|NOTADR|WORD1|TRLBAR),
 EX(CMD_cc,             "cc",           ex_cc,
                        RANGE|NOTADR|COUNT|TRLBAR|BANG),
 EX(CMD_cclose,         "cclose",       ex_cclose,
@@ -498,7 +498,7 @@ EX(CMD_laddfile,    "laddfile",     ex_cfile,
 EX(CMD_later,          "later",        ex_later,
                        TRLBAR|EXTRA|NOSPC|CMDWIN),
 EX(CMD_lbuffer,                "lbuffer",      ex_cbuffer,
-                       RANGE|NOTADR|WORD1|TRLBAR),
+                       BANG|RANGE|NOTADR|WORD1|TRLBAR),
 EX(CMD_lcd,            "lcd",          ex_cd,
                        BANG|FILE1|TRLBAR|CMDWIN),
 EX(CMD_lchdir,         "lchdir",       ex_cd,
index 77f71c87a1a15529ac70df9a87f71488ca01a644..3d7ce930525921a7a59e584fb3b75af1ab1f46a6 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    210,
 /**/
     209,
 /**/