aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-03-23 13:26:00 +0000
committerAndreas Schwab1998-03-23 13:26:00 +0000
commitebc4ab7cf8b31402cdbebf54a902b6defe612258 (patch)
treedaa3d0f153f3ecfc36e27e8c843d79aa9822f8fd
parentecdd2ab53d112a27a1aa98865e1b4230db207363 (diff)
downloademacs-ebc4ab7cf8b31402cdbebf54a902b6defe612258.tar.gz
emacs-ebc4ab7cf8b31402cdbebf54a902b6defe612258.zip
(xterm-mouse-translate, xterm-mouse-event): Replace
obsolete `concat with integer' by format.
-rw-r--r--lisp/xt-mouse.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index a15f22ee623..dbd741e5e6c 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -86,7 +86,7 @@
86 ;; Generate a drag event. 86 ;; Generate a drag event.
87 (if (symbolp down-where) 87 (if (symbolp down-where)
88 0 88 0
89 (list (intern (concat "drag-mouse-" (+ 1 xterm-mouse-last))) 89 (list (intern (format "drag-mouse-%d" (+ 1 xterm-mouse-last)))
90 down-data click-data)) 90 down-data click-data))
91 ))) 91 )))
92 (if (and (symbolp down-where) 92 (if (and (symbolp down-where)
@@ -132,9 +132,9 @@
132 (point)) 132 (point))
133 where)) 133 where))
134 (mouse (intern (if (eq type 3) 134 (mouse (intern (if (eq type 3)
135 (concat "mouse-" (+ 1 xterm-mouse-last)) 135 (format "mouse-%d" (+ 1 xterm-mouse-last))
136 (setq xterm-mouse-last type) 136 (setq xterm-mouse-last type)
137 (concat "down-mouse-" (+ 1 type)))))) 137 (format "down-mouse-%d" (+ 1 type))))))
138 (setq xterm-mouse-x x 138 (setq xterm-mouse-x x
139 xterm-mouse-y y) 139 xterm-mouse-y y)
140 (list mouse 140 (list mouse