aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorKim F. Storm2007-03-21 22:36:48 +0000
committerKim F. Storm2007-03-21 22:36:48 +0000
commit429146fcad08b2a3188dccefaf52a5c1e8257402 (patch)
treeb16f83eedae5da93562d5d59dfc5ce6ccbb13d78 /lisp
parent4c8bb950f03940bbccae0daece30d334019b90d4 (diff)
downloademacs-429146fcad08b2a3188dccefaf52a5c1e8257402.tar.gz
emacs-429146fcad08b2a3188dccefaf52a5c1e8257402.zip
(xterm-mouse-event): Remove unused var `time'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/xt-mouse.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index e83911a78fc..963ed0238ed 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -126,7 +126,6 @@
126 (let* ((type (- (xterm-mouse-event-read) #o40)) 126 (let* ((type (- (xterm-mouse-event-read) #o40))
127 (x (- (xterm-mouse-event-read) #o40 1)) 127 (x (- (xterm-mouse-event-read) #o40 1))
128 (y (- (xterm-mouse-event-read) #o40 1)) 128 (y (- (xterm-mouse-event-read) #o40 1))
129 (time (current-time))
130 ;; Emulate timestamp information. This is accurate enough 129 ;; Emulate timestamp information. This is accurate enough
131 ;; for default value of mouse-1-click-follows-link (450msec). 130 ;; for default value of mouse-1-click-follows-link (450msec).
132 (timestamp (truncate 131 (timestamp (truncate
@@ -155,7 +154,7 @@
155 xterm-mouse-y y) 154 xterm-mouse-y y)
156 (setq 155 (setq
157 last-input-event 156 last-input-event
158 (list mouse 157 (list mouse
159 (let ((event (if w 158 (let ((event (if w
160 (posn-at-x-y (- x left) (- y top) w t) 159 (posn-at-x-y (- x left) (- y top) w t)
161 (append (list nil 'menu-bar) 160 (append (list nil 'menu-bar)