]> granicus.if.org Git - vim/commitdiff
patch 7.4.2318 v7.4.2318
authorBram Moolenaar <Bram@vim.org>
Sat, 3 Sep 2016 18:04:34 +0000 (20:04 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 3 Sep 2016 18:04:34 +0000 (20:04 +0200)
Problem:    When 'incsearch' is not set CTRL-T and CTRL-G are not inserted as
            before.
Solution:   Move #ifdef and don't use goto.

src/ex_getln.c
src/version.c

index 1627ee74f7c9a4815b9bd89842b7fc68a4572bae..59fa288067bd1f86c7065a178085768e0b78476c 100644 (file)
@@ -1657,9 +1657,9 @@ getcmdline(
 #endif
                goto cmdline_not_changed;
 
+#ifdef FEAT_SEARCH_EXTRA
        case Ctrl_G:        /* next match */
        case Ctrl_T:        /* previous match */
-#ifdef FEAT_SEARCH_EXTRA
                if (p_is && !cmd_silent && (firstc == '/' || firstc == '?'))
                {
                    pos_T  t;
@@ -1724,8 +1724,9 @@ getcmdline(
                    }
                    else
                        vim_beep(BO_ERROR);
+                   goto cmdline_not_changed;
                }
-               goto cmdline_not_changed;
+               break;
 #endif
 
        case Ctrl_V:
index fd8d713dbe357c29cdddeb06608bb0415d260e17..40d6dc6b01690bee4043e6e42be7376b50ef675e 100644 (file)
@@ -763,6 +763,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2318,
 /**/
     2317,
 /**/