]> granicus.if.org Git - vim/commitdiff
patch 7.4.2261 v7.4.2261
authorBram Moolenaar <Bram@vim.org>
Fri, 26 Aug 2016 17:56:00 +0000 (19:56 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 26 Aug 2016 17:56:00 +0000 (19:56 +0200)
Problem:    Build fails with small features.
Solution:   Move "else" inside the #ifdef.

src/ex_getln.c
src/version.c

index 925e2f4909b423c9a543a88817ff1156fa7ffb31..f6e5097f6222ed2f0f2388a3461ff5dcbf7e2ac3 100644 (file)
@@ -1570,8 +1570,9 @@ getcmdline(
                            vim_beep(BO_ERROR);
                        goto cmdline_not_changed;
                }
+               else
 #endif
-               else if (xpc.xp_numfiles > 0)
+               if (xpc.xp_numfiles > 0)
                {
                    if (nextwild(&xpc, (c == Ctrl_P) ? WILD_PREV : WILD_NEXT,
                                                    0, firstc != '@') == FAIL)
index f29263b47afdb888bacda54439c95ff5f7f52731..9684a3ee1a143e94b06cbad9b7b02ac1e3110c2c 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2261,
 /**/
     2260,
 /**/