diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-07-04 21:03:36 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-07-04 21:03:36 +0100 |
commit | b67f0c8e495cfbfc09d6c7ff670b8162faf07b01 (patch) | |
tree | a2ac931d3af9d6aae328acef53475e9717791aa0 /src/proto/screen.pro | |
parent | 4c99e622ddd1cc0527262fda3b93e8e70f017371 (diff) | |
download | vim-git-b67f0c8e495cfbfc09d6c7ff670b8162faf07b01.tar.gz |
patch 9.0.0040: use of set_chars_option() is confusingv9.0.0040
Problem: Use of set_chars_option() is confusing.
Solution: Add "apply" argument to store the result or not. Merge similar
code.
Diffstat (limited to 'src/proto/screen.pro')
-rw-r--r-- | src/proto/screen.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/screen.pro b/src/proto/screen.pro index de42c43de..66fc0f3da 100644 --- a/src/proto/screen.pro +++ b/src/proto/screen.pro @@ -55,5 +55,5 @@ void comp_col(void); int number_width(win_T *wp); int screen_screencol(void); int screen_screenrow(void); -char *set_chars_option(win_T *wp, char_u **varp); +char *set_chars_option(win_T *wp, char_u **varp, int apply); /* vim: set ft=c : */ |