diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-05-08 22:37:45 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-08 22:37:45 +0100 |
commit | 728a05c4ab605ae96e906cdf704031ff298d1f89 (patch) | |
tree | 70ab9379d7e0fb26eef4c76e284eab2b168db8c3 | |
parent | 7c824682d2028432ee082703ef0ab399867a089b (diff) | |
download | vim-git-728a05c4ab605ae96e906cdf704031ff298d1f89.tar.gz |
patch 8.2.4920: MS-Windows GUI: unused variablesv8.2.4920
Problem: MS-Windows GUI: unused variables.
Solution: Delete the variables. (John Marriott)
-rw-r--r-- | src/gui_w32.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/gui_w32.c b/src/gui_w32.c index 3239da615..79afa7a2d 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -4003,10 +4003,6 @@ static void get_dialog_font_metrics(void); static int dialog_default_button = -1; -// Intellimouse support -static int mouse_scroll_lines = 0; -static int mouse_scroll_chars = 0; - #ifdef FEAT_TOOLBAR static void initialise_toolbar(void); static void update_toolbar_size(void); diff --git a/src/version.c b/src/version.c index c4f5655bf..fe6255520 100644 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4920, +/**/ 4919, /**/ 4918, |