diff options
| author | Andreas Schwab | 2001-12-04 16:13:04 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2001-12-04 16:13:04 +0000 |
| commit | 90e742e08f1c0a63a2c886d22afeff6e5578e9c2 (patch) | |
| tree | de53d9dad9f76626fc67029836304c31f6921861 | |
| parent | 52c9b141f49b3b77432b1b3e35f1016984974077 (diff) | |
| download | emacs-90e742e08f1c0a63a2c886d22afeff6e5578e9c2.tar.gz emacs-90e742e08f1c0a63a2c886d22afeff6e5578e9c2.zip | |
(turn-off-xterm-mouse-tracking): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/xt-mouse.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 18e396ac18f..8f4bccc8480 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-12-04 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * xt-mouse.el (turn-off-xterm-mouse-tracking): Doc fix. | ||
| 4 | |||
| 1 | 2001-12-04 Colin Walters <walters@debian.org> | 5 | 2001-12-04 Colin Walters <walters@debian.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp/autoload.el (make-autoload): Also generate autoloads | 7 | * emacs-lisp/autoload.el (make-autoload): Also generate autoloads |
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el index 061830fa5c6..b03539532c3 100644 --- a/lisp/xt-mouse.el +++ b/lisp/xt-mouse.el | |||
| @@ -192,7 +192,7 @@ Turn it on to use emacs mouse commands, and off to use xterm mouse commands." | |||
| 192 | (send-string-to-terminal "\e[?1000h"))) | 192 | (send-string-to-terminal "\e[?1000h"))) |
| 193 | 193 | ||
| 194 | (defun turn-off-xterm-mouse-tracking () | 194 | (defun turn-off-xterm-mouse-tracking () |
| 195 | "Disable disable Emacs mouse tracking in xterm." | 195 | "Disable Emacs mouse tracking in xterm." |
| 196 | (if xterm-mouse-mode | 196 | (if xterm-mouse-mode |
| 197 | (send-string-to-terminal "\e[?1000l"))) | 197 | (send-string-to-terminal "\e[?1000l"))) |
| 198 | 198 | ||