]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1235 v7.3.1235
authorBram Moolenaar <Bram@vim.org>
Sun, 23 Jun 2013 14:16:19 +0000 (16:16 +0200)
committerBram Moolenaar <Bram@vim.org>
Sun, 23 Jun 2013 14:16:19 +0000 (16:16 +0200)
Problem:    In insert mode CTRL-] is not inserted, on the command-line it is.
Solution:   Don't insert CTRL-] on the command line. (Yukihiro Nakadaira)

src/ex_getln.c
src/version.c

index e407ab0ae7d6692a35333f80ac78fd029971daa0..ec64619e4db9e8b883d2375bcd98513c69a054c7 100644 (file)
@@ -1700,13 +1700,13 @@ getcmdline(firstc, count, indent)
         * We come here if we have a normal character.
         */
 
-       if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && ccheck_abbr(
+       if (do_abbr && (IS_SPECIAL(c) || !vim_iswordc(c)) && (ccheck_abbr(
 #ifdef FEAT_MBYTE
                        /* Add ABBR_OFF for characters above 0x100, this is
                         * what check_abbr() expects. */
                        (has_mbyte && c >= 0x100) ? (c + ABBR_OFF) :
 #endif
-                                                                       c))
+                                                        c) || c == Ctrl_RSB))
            goto cmdline_changed;
 
        /*
index cde6db8ca5de02896e393376fab2b65452fedfee..2f24c3f44f5baca3506a7f0523b10f079a67192d 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1235,
 /**/
     1234,
 /**/