From: Richard M. Stallman Date: Sun, 28 Jul 1996 00:42:14 +0000 (+0000) Subject: Fix previous change. X-Git-Tag: emacs-19.34~68 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f10ded1cc3e2e453fa3c5972e4d4658f6e8ac6a4;p=emacs.git Fix previous change. --- diff --git a/src/xterm.c b/src/xterm.c index 1b91915f4fb..16711587b5c 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -4052,8 +4052,12 @@ XTread_socket (sd, bufp, numchars, waitp, expected) } else if (event.type == ButtonRelease) { - if (!f) f = last_mouse_press_frame; - SET_SAVED_BUTTON_EVENT; + if (!f) + f = last_mouse_press_frame; + if (f) + { + SET_SAVED_BUTTON_EVENT; + } } else goto OTHER;