]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.0113: "make cmdidxs" fails v8.2.0113
authorBram Moolenaar <Bram@vim.org>
Sun, 12 Jan 2020 14:46:08 +0000 (15:46 +0100)
committerBram Moolenaar <Bram@vim.org>
Sun, 12 Jan 2020 14:46:08 +0000 (15:46 +0100)
Problem:    "make cmdidxs" fails.
Solution:   Allow address for ":cquit".  Add --not-a-term to avoid a delay.

src/Make_cyg_ming.mak
src/Make_mvc.mak
src/Makefile
src/ex_cmds.h
src/version.c

index f9c795bfef1681dc0de40eba84c3b5b46520508c..f89d8dd3663ef8ede3a61af62b91b13cf81921a1 100644 (file)
@@ -1085,7 +1085,7 @@ endif
 # If this fails because you don't have Vim yet, first build and install Vim
 # without changes.
 cmdidxs: ex_cmds.h
-       vim --clean -X -u create_cmdidxs.vim
+       vim --clean -X --not-a-term -u create_cmdidxs.vim
 
 ###########################################################################
 INCL = vim.h alloc.h ascii.h ex_cmds.h feature.h globals.h \
index eb71296146fe98c0632c53cb6ab307f91d9d7478..5704eac0f01461ce64c0b5daa2d6836002a2fa34 100644 (file)
@@ -1417,7 +1417,7 @@ clean: testclean
 # If this fails because you don't have Vim yet, first build and install Vim
 # without changes.
 cmdidxs: ex_cmds.h
-       vim --clean -X -u create_cmdidxs.vim
+       vim --clean -X --not-a-term -u create_cmdidxs.vim
 
 test:
        cd testdir
index 1c7094098e9600bfc74b8633303823847bb3d607..08a32775439285ed5f4b6c1785031865ac69c257 100644 (file)
@@ -2064,7 +2064,7 @@ autoconf:
 # If this fails because you don't have Vim yet, first build and install Vim
 # without changes.
 cmdidxs: ex_cmds.h
-       vim --clean -X -u create_cmdidxs.vim
+       vim --clean -X --not-a-term -u create_cmdidxs.vim
 
 
 # The normal command to compile a .c file to its .o file.
index 928b1100d8206c0c6105e8eedaacb39145985972..36a8ad4c2c16736250dbb51e9ec0bbb043cae94f 100644 (file)
@@ -408,7 +408,7 @@ EXCMD(CMD_cpfile,   "cpfile",       ex_cnext,
        ADDR_OTHER),
 EXCMD(CMD_cquit,       "cquit",        ex_cquit,
        EX_RANGE|EX_COUNT|EX_ZEROR|EX_TRLBAR|EX_BANG,
-       ADDR_NONE),
+       ADDR_UNSIGNED),
 EXCMD(CMD_crewind,     "crewind",      ex_cc,
        EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG,
        ADDR_UNSIGNED),
index 508db61ef02d8fb47b62e3dd13e786ba6f964ebb..ba4fa7f7e4a16efe31a204a0beb0463f7a73423e 100644 (file)
@@ -742,6 +742,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    113,
 /**/
     112,
 /**/