summaryrefslogtreecommitdiffstats
path: root/src/proto/charset.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-29 12:12:43 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-29 12:12:43 +0000
commitaf377e34b01ba00f9520d2b9de1f911e72db0114 (patch)
treee3863b6aeb06509afdd60fa7448163268f24aca1 /src/proto/charset.pro
parent293eb9ba4669b1500370502397d399681e7098f0 (diff)
patch 8.2.3694: cannot use quotes in the count of an Ex commandv8.2.3694
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)
Diffstat (limited to 'src/proto/charset.pro')
-rw-r--r--src/proto/charset.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/charset.pro b/src/proto/charset.pro
index 883f39300d..c71188de35 100644
--- a/src/proto/charset.pro
+++ b/src/proto/charset.pro
@@ -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);