Skip to content

Commit ebdd90a

Browse files
committed
patch 8.0.0006
Problem: ":lb" is interpreted as ":lbottom" while the documentation says it means ":lbuffer". Solution: Adjust the order of the commands. (haya14busa, closes #1093)
1 parent d079690 commit ebdd90a

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

src/ex_cmds.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -730,12 +730,12 @@ EX(CMD_laddfile, "laddfile", ex_cfile,
730730
EX(CMD_later, "later", ex_later,
731731
TRLBAR|EXTRA|NOSPC|CMDWIN,
732732
ADDR_LINES),
733-
EX(CMD_lbottom, "lbottom", ex_cbottom,
734-
TRLBAR,
735-
ADDR_LINES),
736733
EX(CMD_lbuffer, "lbuffer", ex_cbuffer,
737734
BANG|RANGE|NOTADR|WORD1|TRLBAR,
738735
ADDR_LINES),
736+
EX(CMD_lbottom, "lbottom", ex_cbottom,
737+
TRLBAR,
738+
ADDR_LINES),
739739
EX(CMD_lcd, "lcd", ex_cd,
740740
BANG|FILE1|TRLBAR|CMDWIN,
741741
ADDR_LINES),

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
6,
767769
/**/
768770
5,
769771
/**/

0 commit comments

Comments
 (0)