]> git.eshelyaron.com Git - emacs.git/commitdiff
(xterm-mouse-event): Set last-input-event so
authorNick Roberts <nickrob@snap.net.nz>
Mon, 28 Nov 2005 05:38:49 +0000 (05:38 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Mon, 28 Nov 2005 05:38:49 +0000 (05:38 +0000)
that (list last-input-event) works as in interactive spec.

lisp/xt-mouse.el

index 80927647fbb515e1c60bb3b6d8e2a2914f5e2df2..61f4f17ed2a708f0b1b54594353222ae73bb3598 100644 (file)
 
     (setq xterm-mouse-x x
          xterm-mouse-y y)
-    (if w
-       (list mouse (posn-at-x-y (- x left) (- y top) w t))
-      (list mouse
-           (append (list nil 'menu-bar) (nthcdr 2 (posn-at-x-y x y w t)))))))
+    (setq
+     last-input-event
+     (if w
+        (list mouse (posn-at-x-y (- x left) (- y top) w t))
+       (list mouse
+            (append (list nil 'menu-bar) (nthcdr 2 (posn-at-x-y x y w t))))))))
 
 ;;;###autoload
 (define-minor-mode xterm-mouse-mode