diff options
| author | Karl Heuer | 1998-11-12 01:57:30 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-11-12 01:57:30 +0000 |
| commit | a00e91cd76c44da076b715a70454711656e4a436 (patch) | |
| tree | c5148760102c8e1ed8f3b1e5f83fba3923861e80 /src | |
| parent | 7172d0aab3b92712a849a8f2460cf073151bbc07 (diff) | |
| download | emacs-a00e91cd76c44da076b715a70454711656e4a436.tar.gz emacs-a00e91cd76c44da076b715a70454711656e4a436.zip | |
(XTread_socket): Fix previous change in case F == 0.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index a63fdafb836..573f11c15c3 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -4570,7 +4570,8 @@ XTread_socket (sd, bufp, numchars, expected) | |||
| 4570 | before this event; any subsequent mouse-movement | 4570 | before this event; any subsequent mouse-movement |
| 4571 | Emacs events should reflect only motion after | 4571 | Emacs events should reflect only motion after |
| 4572 | the ButtonPress. */ | 4572 | the ButtonPress. */ |
| 4573 | f->mouse_moved = 0; | 4573 | if (f != 0) |
| 4574 | f->mouse_moved = 0; | ||
| 4574 | } | 4575 | } |
| 4575 | else | 4576 | else |
| 4576 | { | 4577 | { |