]> granicus.if.org Git - vim/commitdiff
patch 8.0.0006 v8.0.0006
authorBram Moolenaar <Bram@vim.org>
Tue, 20 Sep 2016 19:39:14 +0000 (21:39 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 20 Sep 2016 19:39:14 +0000 (21:39 +0200)
Problem:    ":lb" is interpreted as ":lbottom" while the documentation says it
            means ":lbuffer".
Solution:   Adjust the order of the commands. (haya14busa, closes #1093)

src/ex_cmds.h
src/version.c

index 4f3566023ec6ca2ec6cee910723d0f17410715ba..01126baedf3a0e2d7efdedcf506cd5334629071c 100644 (file)
@@ -730,12 +730,12 @@ EX(CMD_laddfile,  "laddfile",     ex_cfile,
 EX(CMD_later,          "later",        ex_later,
                        TRLBAR|EXTRA|NOSPC|CMDWIN,
                        ADDR_LINES),
-EX(CMD_lbottom,                "lbottom",      ex_cbottom,
-                       TRLBAR,
-                       ADDR_LINES),
 EX(CMD_lbuffer,                "lbuffer",      ex_cbuffer,
                        BANG|RANGE|NOTADR|WORD1|TRLBAR,
                        ADDR_LINES),
+EX(CMD_lbottom,                "lbottom",      ex_cbottom,
+                       TRLBAR,
+                       ADDR_LINES),
 EX(CMD_lcd,            "lcd",          ex_cd,
                        BANG|FILE1|TRLBAR|CMDWIN,
                        ADDR_LINES),
index 77d35a2dc3f21f5b6028a52637e2ce9fb3ba2df6..239779294e853c7635bd5c71ef989ac46102f12b 100644 (file)
@@ -764,6 +764,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    6,
 /**/
     5,
 /**/