Skip to content

Commit 9b24dfc

Browse files
committed
patch 8.2.0113: "make cmdidxs" fails
Problem: "make cmdidxs" fails. Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.
1 parent 02ad463 commit 9b24dfc

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/Make_cyg_ming.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1085,7 +1085,7 @@ endif
10851085
# If this fails because you don't have Vim yet, first build and install Vim
10861086
# without changes.
10871087
cmdidxs: ex_cmds.h
1088-
vim --clean -X -u create_cmdidxs.vim
1088+
vim --clean -X --not-a-term -u create_cmdidxs.vim
10891089

10901090
###########################################################################
10911091
INCL = vim.h alloc.h ascii.h ex_cmds.h feature.h globals.h \

src/Make_mvc.mak

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1417,7 +1417,7 @@ clean: testclean
14171417
# If this fails because you don't have Vim yet, first build and install Vim
14181418
# without changes.
14191419
cmdidxs: ex_cmds.h
1420-
vim --clean -X -u create_cmdidxs.vim
1420+
vim --clean -X --not-a-term -u create_cmdidxs.vim
14211421

14221422
test:
14231423
cd testdir

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2064,7 +2064,7 @@ autoconf:
20642064
# If this fails because you don't have Vim yet, first build and install Vim
20652065
# without changes.
20662066
cmdidxs: ex_cmds.h
2067-
vim --clean -X -u create_cmdidxs.vim
2067+
vim --clean -X --not-a-term -u create_cmdidxs.vim
20682068

20692069

20702070
# The normal command to compile a .c file to its .o file.

src/ex_cmds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ EXCMD(CMD_cpfile, "cpfile", ex_cnext,
408408
ADDR_OTHER),
409409
EXCMD(CMD_cquit, "cquit", ex_cquit,
410410
EX_RANGE|EX_COUNT|EX_ZEROR|EX_TRLBAR|EX_BANG,
411-
ADDR_NONE),
411+
ADDR_UNSIGNED),
412412
EXCMD(CMD_crewind, "crewind", ex_cc,
413413
EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG,
414414
ADDR_UNSIGNED),

src/version.c

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

743743
static int included_patches[] =
744744
{ /* Add new patch number below this line */
745+
/**/
746+
113,
745747
/**/
746748
112,
747749
/**/

0 commit comments

Comments
 (0)