1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-11 05:51:21 -08:00

Fix previous change.

This commit is contained in:
Richard M. Stallman 1996-07-28 00:42:14 +00:00
parent ce89ef46f6
commit f10ded1cc3

View file

@ -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;