diff options
author | Dave Love <fx@gnu.org> | 2000-02-22 12:02:10 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-02-22 12:02:10 +0000 |
commit | 47da5efad17e54f35d53195e05c326ec26eee351 (patch) | |
tree | 053994525ef017ca3f74eb7ad4087bf9ca6580c9 /lisp | |
parent | b2497d2e515ee895b2b9bc5664c05b749c03faa8 (diff) | |
download | emacs-47da5efad17e54f35d53195e05c326ec26eee351.tar.gz |
(xterm-mouse-mode): Typo.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/ChangeLog | 9 | ||||
-rw-r--r-- | lisp/xt-mouse.el | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 312d8351ab6..56a9a08c244 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,12 @@ +2000-02-22 Dave Love <fx@gnu.org> + + * xt-mouse.el: Doc fixes. + (xterm-mouse-position-function): New function, replacing advice of + mouse-position. + (xterm-mouse-mode): Use it. Don't turn on under a window system. + + * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition. + 2000-02-21 Gerd Moellmann <gerd@gnu.org> * format.el (format-annotate-single-property-change): Handle diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el index 808923ac578..b87061e5316 100644 --- a/lisp/xt-mouse.el +++ b/lisp/xt-mouse.el @@ -163,7 +163,7 @@ Turn it on to use emacs mouse commands, and off to use xterm mouse commands." mouse-position-function nil) (set-buffer-modified-p (buffer-modified-p)))) ;;Turn it on - (unless (or window-systemxterm-mouse-mode) + (unless (or window-system xterm-mouse-mode) (setq xterm-mouse-mode t mouse-position-function #'xterm-mouse-position-function) (turn-on-xterm-mouse-tracking) |