diff options
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/xterm.c | 2 |
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 @@ | |||
| 1 | 2001-11-17 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * xterm.c (note_mouse_highlight): Fix type of variable `ignore'. | ||
| 4 | |||
| 1 | 2001-11-17 Richard M. Stallman <rms@gnu.org> | 5 | 2001-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 |