]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.651 v7.3.651
authorBram Moolenaar <Bram@vim.org>
Wed, 5 Sep 2012 13:15:07 +0000 (15:15 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 5 Sep 2012 13:15:07 +0000 (15:15 +0200)
Problem:    Completion after ":help \{-" gives an error message.
Solution:   Prepend a backslash.

src/ex_cmds.c
src/version.c

index f715af6a8fac7f75476b3ba20beb8c6869765b20..889ea62032ec6edc24dd9a14f139f9bed542fb28 100644 (file)
@@ -4851,7 +4851,7 @@ do_sub(eap)
 #ifdef FEAT_EVAL
                if (do_count)
                {
-                   /* prevent accidently changing the buffer by a function */
+                   /* prevent accidentally changing the buffer by a function */
                    save_ma = curbuf->b_p_ma;
                    curbuf->b_p_ma = FALSE;
                    sandbox++;
@@ -5264,7 +5264,7 @@ do_sub_msg(count_only)
  * is assumed to be 'p' if missing.
  *
  * This is implemented in two passes: first we scan the file for the pattern and
- * set a mark for each line that (not) matches. secondly we execute the command
+ * set a mark for each line that (not) matches. Secondly we execute the command
  * for each line that has a mark. This is required because after deleting
  * lines we do not know where to search for the next match.
  */
@@ -5896,9 +5896,14 @@ find_help_tags(arg, num_matches, matches, keep_lang)
        }
        else
        {
-         /* replace "[:...:]" with "\[:...:]"; "[+...]" with "\[++...]" */
-           if (arg[0] == '[' && (arg[1] == ':'
-                                        || (arg[1] == '+' && arg[2] == '+')))
+         /* Replace:
+          * "[:...:]" with "\[:...:]"
+          * "[++...]" with "\[++...]"
+          * "\{" with "\\{"
+          */
+           if ((arg[0] == '[' && (arg[1] == ':'
+                        || (arg[1] == '+' && arg[2] == '+')))
+                   || (arg[0] == '\\' && arg[1] == '{'))
              *d++ = '\\';
 
          for (s = arg; *s; ++s)
index a2ca2386e8c3d87874a9da73fa2edcfe3b85bd4f..6afaf8d317dcdfa383aa722e0b56a297f7dab67a 100644 (file)
@@ -719,6 +719,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    651,
 /**/
     650,
 /**/