comparison src/proto/charset.pro @ 26327:227543e4181f v8.2.3694

patch 8.2.3694: cannot use quotes in the count of an Ex command Commit: https://github.com/vim/vim/commit/af377e34b01ba00f9520d2b9de1f911e72db0114 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 29 12:12:43 2021 +0000 patch 8.2.3694: cannot use quotes in the count of an Ex command 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)
author Bram Moolenaar <Bram@vim.org>
date Mon, 29 Nov 2021 13:15:02 +0100
parents fe4b6fc7149c
children 9f7568104726
comparison
equal deleted inserted replaced
26326:2a3b022339b0 26327:227543e4181f
52 int vim_toupper(int c); 52 int vim_toupper(int c);
53 int vim_tolower(int c); 53 int vim_tolower(int c);
54 char_u *skiptowhite(char_u *p); 54 char_u *skiptowhite(char_u *p);
55 char_u *skiptowhite_esc(char_u *p); 55 char_u *skiptowhite_esc(char_u *p);
56 long getdigits(char_u **pp); 56 long getdigits(char_u **pp);
57 long getdigits_quoted(char_u **pp);
57 int vim_isblankline(char_u *lbuf); 58 int vim_isblankline(char_u *lbuf);
58 void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict); 59 void vim_str2nr(char_u *start, int *prep, int *len, int what, varnumber_T *nptr, uvarnumber_T *unptr, int maxlen, int strict);
59 int hex2nr(int c); 60 int hex2nr(int c);
60 int hexhex2nr(char_u *p); 61 int hexhex2nr(char_u *p);
61 int rem_backslash(char_u *str); 62 int rem_backslash(char_u *str);