aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-12-13 14:27:09 +0000
committerGerd Moellmann2000-12-13 14:27:09 +0000
commite10da50740fba30df459e584b32fa3121a44d456 (patch)
tree13cb0d69b438dad345bde2c66fff59c992259bd0 /src
parent8fd9a6667c27c75c92ce4ebaafe247a5a6751835 (diff)
downloademacs-e10da50740fba30df459e584b32fa3121a44d456.tar.gz
emacs-e10da50740fba30df459e584b32fa3121a44d456.zip
(do_mouse_tracking): Make externally visible.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/keyboard.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7dc51cd46f9..3fdaf7b259c 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -7,6 +7,12 @@
7 7
82000-12-13 Gerd Moellmann <gerd@gnu.org> 82000-12-13 Gerd Moellmann <gerd@gnu.org>
9 9
10 * dispnew.c (update_window): If do_mouse_tracking is non-nil,
11 don't interrupt the update for pending input initially, i.e.
12 update at least some lines.
13
14 * keyboard.c (do_mouse_tracking): Make externally visible.
15
10 * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'. 16 * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'.
11 17
12 * xfns.c (gray_bitmap_bits): Declare `char *'. 18 * xfns.c (gray_bitmap_bits): Declare `char *'.
diff --git a/src/keyboard.c b/src/keyboard.c
index 13b93fb390e..ae7ad55da38 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -523,7 +523,7 @@ static struct input_event * volatile kbd_store_ptr;
523/* If this flag is non-nil, we check mouse_moved to see when the 523/* If this flag is non-nil, we check mouse_moved to see when the
524 mouse moves, and motion events will appear in the input stream. 524 mouse moves, and motion events will appear in the input stream.
525 Otherwise, mouse motion is ignored. */ 525 Otherwise, mouse motion is ignored. */
526static Lisp_Object do_mouse_tracking; 526Lisp_Object do_mouse_tracking;
527 527
528/* Symbols to head events. */ 528/* Symbols to head events. */
529Lisp_Object Qmouse_movement; 529Lisp_Object Qmouse_movement;