(mouse-undouble-last-event): Fix gross bugs:

use modifiers, not old-modifiers.
This commit is contained in:
Richard M. Stallman 1997-07-09 02:47:07 +00:00
parent 2289984b61
commit 3bb846b871

View file

@ -728,7 +728,7 @@ If DIR is positive skip forward; if negative, skip backward."
(if (consp event)
;; Use reverse, not nreverse, since event-modifiers
;; does not copy the list it returns.
(cons (event-convert-list (reverse (cons basic old-modifiers)))
(cons (event-convert-list (reverse (cons basic modifiers)))
(cdr event))
event)))
(setcar last new)