diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-05-30 19:00:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-05-30 19:00:15 +0200 |
commit | fd3e5dc97f06e54220a2c5b65980dd6adc2c5555 (patch) | |
tree | 204e2445390797f1ea8751e7f1f7d242884f154d /src/gui.c | |
parent | a17d4c1934b008b9aa8a2d7cf085cfe76a690d9a (diff) | |
download | vim-fd3e5dc97f06e54220a2c5b65980dd6adc2c5555.zip |
Add a few #ifdefs to exclude functions that are not used. (Domnique Pelle)
Diffstat (limited to 'src/gui.c')
-rw-r--r-- | src/gui.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3908,6 +3908,7 @@ gui_drag_scrollbar(sb, value, still_dragging) * Scrollbar stuff: */ +#if defined(FEAT_AUTOCMD) || defined(FEAT_WINDOWS) || defined(PROTO) /* * Called when something in the window layout has changed. */ @@ -3922,6 +3923,7 @@ gui_may_update_scrollbars() } need_mouse_correct = TRUE; } +#endif void gui_update_scrollbars(force) |