aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab2001-11-17 21:41:54 +0000
committerAndreas Schwab2001-11-17 21:41:54 +0000
commit91c153e21f56f7ac76b00a70eb6388f3aaa7f869 (patch)
treef4fb3245550fdac786de09d5e768644ee721a873
parent65b7d3e7a74dc76b39f5b16a1467abba12ae1b88 (diff)
downloademacs-91c153e21f56f7ac76b00a70eb6388f3aaa7f869.tar.gz
emacs-91c153e21f56f7ac76b00a70eb6388f3aaa7f869.zip
(note_mouse_highlight): Fix type of variable `ignore'.
-rw-r--r--src/ChangeLog4
-rw-r--r--src/xterm.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 678e80bb216..f73c7ddcbc3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12001-11-17 Andreas Schwab <schwab@suse.de>
2
3 * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
4
12001-11-17 Richard M. Stallman <rms@gnu.org> 52001-11-17 Richard M. Stallman <rms@gnu.org>
2 6
3 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object. 7 * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
diff --git a/src/xterm.c b/src/xterm.c
index 4e82a8092d4..04ad5ee3772 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -7127,7 +7127,7 @@ note_mouse_highlight (f, x, y)
7127 { 7127 {
7128 Lisp_Object before = Foverlay_start (overlay); 7128 Lisp_Object before = Foverlay_start (overlay);
7129 Lisp_Object after = Foverlay_end (overlay); 7129 Lisp_Object after = Foverlay_end (overlay);
7130 Lisp_Object ignore; 7130 int ignore;
7131 7131
7132 /* Note that we might not be able to find position 7132 /* Note that we might not be able to find position
7133 BEFORE in the glyph matrix if the overlay is 7133 BEFORE in the glyph matrix if the overlay is