diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-06 12:28:24 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-06 12:28:24 +0000 |
commit | b5dd424dc329c652b9ee91e5e1dd31c06d26f6ff (patch) | |
tree | 486045c496e4eb672b56ece20d9fee55a3bfee6d /src | |
parent | 8bc7847e20e974954f9ef9106c8d51c358843bf7 (diff) | |
download | vim-git-b5dd424dc329c652b9ee91e5e1dd31c06d26f6ff.tar.gz |
updated for version 7.1a
Diffstat (limited to 'src')
-rw-r--r-- | src/gui.c | 2 | ||||
-rw-r--r-- | src/gui.h | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -2714,7 +2714,7 @@ gui_wait_for_chars(wtime) } /* - * Fill buffer with mouse coordinates encoded for check_termcode(). + * Fill p[4] with mouse coordinates encoded for check_termcode(). */ static void fill_mouse_coord(p, col, row) @@ -71,6 +71,10 @@ # define ALWAYS_USE_GUI #endif +/* + * On some systems scrolling needs to be done right away instead of in the + * main loop. + */ #if defined(FEAT_GUI_MSWIN) || defined(FEAT_GUI_MAC) || defined(HAVE_GTK2) # define USE_ON_FLY_SCROLL #endif |