comparison src/proto/charset.pro @ 29595:5233acfa06f1 v9.0.0138

patch 9.0.0138: not enough characters accepted for 'spellfile' Commit: https://github.com/vim/vim/commit/bc49c5f48f89c2d6f4d88ee77f44a11d68293be3 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Aug 4 13:01:48 2022 +0100 patch 9.0.0138: not enough characters accepted for 'spellfile' Problem: Not enough characters accepted for 'spellfile'. Solution: Add vim_is_fname_char() and use it for 'spellfile'.
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Aug 2022 14:15:29 +0200
parents 057c26b5c33a
children f2d7f20d83c3
comparison
equal deleted inserted replaced
29594:6eea3c60c85c 29595:5233acfa06f1
23 int vim_iswordc(int c); 23 int vim_iswordc(int c);
24 int vim_iswordc_buf(int c, buf_T *buf); 24 int vim_iswordc_buf(int c, buf_T *buf);
25 int vim_iswordp(char_u *p); 25 int vim_iswordp(char_u *p);
26 int vim_iswordp_buf(char_u *p, buf_T *buf); 26 int vim_iswordp_buf(char_u *p, buf_T *buf);
27 int vim_isfilec(int c); 27 int vim_isfilec(int c);
28 int vim_is_fname_char(int c);
28 int vim_isfilec_or_wc(int c); 29 int vim_isfilec_or_wc(int c);
29 int vim_isprintc(int c); 30 int vim_isprintc(int c);
30 int vim_isprintc_strict(int c); 31 int vim_isprintc_strict(int c);
31 void init_chartabsize_arg(chartabsize_T *cts, win_T *wp, linenr_T lnum, colnr_T col, char_u *line, char_u *ptr); 32 void init_chartabsize_arg(chartabsize_T *cts, win_T *wp, linenr_T lnum, colnr_T col, char_u *line, char_u *ptr);
32 void clear_chartabsize_arg(chartabsize_T *cts); 33 void clear_chartabsize_arg(chartabsize_T *cts);