diff options
| -rw-r--r-- | lisp/xt-mouse.el | 6 |
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 |