diff options
| -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 | ||