]> granicus.if.org Git - vim/commitdiff
patch 8.2.3694: cannot use quotes in the count of an Ex command v8.2.3694
authorBram Moolenaar <Bram@vim.org>
Mon, 29 Nov 2021 12:12:43 +0000 (12:12 +0000)
committerBram Moolenaar <Bram@vim.org>
Mon, 29 Nov 2021 12:12:43 +0000 (12:12 +0000)
Problem:    Cannot use quotes in the count of an Ex command.
Solution:   Add getdigits_quoted().  Give an error when misplacing a quote in
            a range. (closes #9240)

src/charset.c
src/ex_docmd.c
src/proto/charset.pro
src/testdir/test_usercommands.vim
src/version.c

index 2c46f7ad04c0578b933c692dd5d3c5b9799f8f36..0c17140c75e3a2ebc616fa3bc84be21cf8313c3a 100644 (file)
@@ -1748,7 +1748,7 @@ skiptowhite_esc(char_u *p)
 }
 
 /*
- * Getdigits: Get a number from a string and skip over it.
+ * Get a number from a string and skip over it.
  * Note: the argument is a pointer to a char_u pointer!
  */
     long
@@ -1766,6 +1766,38 @@ getdigits(char_u **pp)
     return retval;
 }
 
+/*
+ * Like getdigits() but allow for embedded single quotes.
+ */
+    long
+getdigits_quoted(char_u **pp)
+{
+    char_u     *p = *pp;
+    long       retval = 0;
+
+    if (*p == '-')
+       ++p;
+    while (VIM_ISDIGIT(*p))
+    {
+       if (retval >= LONG_MAX / 10 - 10)
+           retval = LONG_MAX;
+       else
+           retval = retval * 10 - '0' + *p;
+       ++p;
+       if (in_vim9script() && *p == '\'' && VIM_ISDIGIT(p[1]))
+           ++p;
+    }
+    if (**pp == '-')
+    {
+       if (retval == LONG_MAX)
+           retval = LONG_MIN;
+       else
+           retval = -retval;
+    }
+    *pp = p;
+    return retval;
+}
+
 /*
  * Return TRUE if "lbuf" is empty or only contains blanks.
  */
index 6d2923ccb2518b16d487256b767e1d17dc00ed86..523d8af30e67c989a90649d040c9cab45e95a6f8 100644 (file)
@@ -2402,7 +2402,7 @@ do_one_cmd(
            && (!(ea.argt & EX_BUFNAME) || *(p = skipdigits(ea.arg + 1)) == NUL
                                                          || VIM_ISWHITE(*p)))
     {
-       n = getdigits(&ea.arg);
+       n = getdigits_quoted(&ea.arg);
        ea.arg = skipwhite(ea.arg);
        if (n <= 0 && !ni && (ea.argt & EX_ZEROR) == 0)
        {
@@ -3950,10 +3950,11 @@ excmd_get_argt(cmdidx_T idx)
  */
     char_u *
 skip_range(
-    char_u     *cmd,
+    char_u     *cmd_start,
     int                skip_star,      // skip "*" used for Visual range
     int                *ctx)           // pointer to xp_context or NULL
 {
+    char_u     *cmd = cmd_start;
     unsigned   delim;
 
     while (vim_strchr((char_u *)" \t0123456789.$%'/?-+,;\\", *cmd) != NULL)
@@ -3967,6 +3968,17 @@ skip_range(
        }
        else if (*cmd == '\'')
        {
+           char_u *p = cmd;
+
+           // a quote is only valid at the start or after a separator
+           while (p > cmd_start)
+           {
+               --p;
+               if (!VIM_ISWHITE(*p))
+                   break;
+           }
+           if (cmd > cmd_start && !VIM_ISWHITE(*p) && *p != ',' && *p != ';')
+               break;
            if (*++cmd == NUL && ctx != NULL)
                *ctx = EXPAND_NOTHING;
        }
index 883f39300dbc57a07b264c080b278ad4443ad386..c71188de354a5105d4eaaa2fddbe425b948eed0a 100644 (file)
@@ -54,6 +54,7 @@ int vim_tolower(int c);
 char_u *skiptowhite(char_u *p);
 char_u *skiptowhite_esc(char_u *p);
 long getdigits(char_u **pp);
+long getdigits_quoted(char_u **pp);
 int vim_isblankline(char_u *lbuf);
 void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict);
 int hex2nr(int c);
index 6707a03964d9ec5fe246ebe9cbb47ff5d3ce663f..d560f494889c73d38207f9d1d391b2766d08a8fb 100644 (file)
@@ -677,4 +677,32 @@ func Test_delcommand_buffer()
   call assert_equal(0, exists(':Global'))
 endfunc
 
+def Test_count_with_quotes()
+  command -count GetCount g:nr = <count>
+  execute("GetCount 1'2")
+  assert_equal(12, g:nr)
+  execute("GetCount 1'234'567")
+  assert_equal(1'234'567, g:nr)
+
+  execute("GetCount 1'234'567'890'123'456'789'012")
+  assert_equal(v:sizeoflong == 8 ? 9223372036854775807 : 2147483647, g:nr)
+
+  # TODO: test with negative number once this is supported
+
+  assert_fails("GetCount '12", "E488:")
+  assert_fails("GetCount 12'", "E488:")
+  assert_fails("GetCount 1''2", "E488:")
+
+  assert_fails(":1'2GetCount", 'E492:')
+  new
+  setline(1, 'text')
+  normal ma
+  execute(":1, 'aprint")
+  bwipe!
+
+  unlet g:nr
+  delcommand GetCount
+enddef
+
+
 " vim: shiftwidth=2 sts=2 expandtab
index b7fe97b2b7b9bd29671a18496d2e0e2145e939c6..623afb2def4aebc7e879866edbf25d360cad5323 100644 (file)
@@ -757,6 +757,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    3694,
 /**/
     3693,
 /**/