aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love <[email protected]>2000-02-22 12:02:10 +0000
committerDave Love <[email protected]>2000-02-22 12:02:10 +0000
commit47da5efad17e54f35d53195e05c326ec26eee351 (patch)
tree053994525ef017ca3f74eb7ad4087bf9ca6580c9
parentb2497d2e515ee895b2b9bc5664c05b749c03faa8 (diff)
(xterm-mouse-mode): Typo.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/xt-mouse.el2
2 files changed, 10 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 312d8351ab..56a9a08c24 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
+2000-02-22 Dave Love <[email protected]>
+
+ * 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 <[email protected]>
* format.el (format-annotate-single-property-change): Handle
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index 808923ac57..b87061e531 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)