diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-09 12:53:14 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-08-09 12:53:14 +0100 |
commit | 8ca29b6a3599b82b8822b7697cad63d0244c2d59 (patch) | |
tree | 9abef23b2de61a59e95a317edc9cabdf40425637 /src/proto | |
parent | afa23d1b99692e3c726eb694933ab348b442a1e4 (diff) | |
download | vim-git-8ca29b6a3599b82b8822b7697cad63d0244c2d59.tar.gz |
patch 9.0.0176: checking character options is duplicated and incompletev9.0.0176
Problem: Checking character options is duplicated and incomplete.
Solution: Move checking to check_chars_options(). (closes #10863)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/screen.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/screen.pro b/src/proto/screen.pro index 66fc0f3da..81e5e101c 100644 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -56,4 +56,5 @@ int number_width(win_T *wp); int screen_screencol(void); int screen_screenrow(void); char *set_chars_option(win_T *wp, char_u **varp, int apply); +char *check_chars_options(void); /* vim: set ft=c : */ |