aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Paul Wallington2002-08-07 21:46:49 +0000
committerJohn Paul Wallington2002-08-07 21:46:49 +0000
commit62c32edf070d437da3457de5c8cbfc893ed39495 (patch)
tree777e0f4da0ed9f2d53ddf67e6d6fadfc81cd1855
parent685f58582f4da4624507cc88a995ccf4c68ff9b8 (diff)
downloademacs-62c32edf070d437da3457de5c8cbfc893ed39495.tar.gz
emacs-62c32edf070d437da3457de5c8cbfc893ed39495.zip
* xt-mouse.el (xterm-mouse-mode): Make it a global mode.
* wid-browse.el (widget-minor-mode): Fix doc typo.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/wid-browse.el4
-rw-r--r--lisp/xt-mouse.el2
3 files changed, 9 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d091ebb16a6..0ca9b76680b 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12002-08-07 John Paul Wallington <jpw@shootybangbang.com>
2
3 * xt-mouse.el (xterm-mouse-mode): Make it a global mode.
4
5 * wid-browse.el (widget-minor-mode): Fix doc typo.
6
12002-08-07 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE> 72002-08-07 Kai Gro,b_(Bjohann <Kai.Grossjohann@CS.Uni-Dortmund.DE>
2 8
3 * net/tramp.el: Version 2.0.12 released. 9 * net/tramp.el: Version 2.0.12 released.
diff --git a/lisp/wid-browse.el b/lisp/wid-browse.el
index eb5dac08fdf..b19305e133d 100644
--- a/lisp/wid-browse.el
+++ b/lisp/wid-browse.el
@@ -265,8 +265,8 @@ VALUE is assumed to be a list of widgets."
265;;; Widget Minor Mode. 265;;; Widget Minor Mode.
266 266
267(defvar widget-minor-mode nil 267(defvar widget-minor-mode nil
268 "I non-nil, we are in Widget Minor Mode.") 268 "If non-nil, we are in Widget Minor Mode.")
269 (make-variable-buffer-local 'widget-minor-mode) 269(make-variable-buffer-local 'widget-minor-mode)
270 270
271(defvar widget-minor-mode-map nil 271(defvar widget-minor-mode-map nil
272 "Keymap used in Widget Minor Mode.") 272 "Keymap used in Widget Minor Mode.")
diff --git a/lisp/xt-mouse.el b/lisp/xt-mouse.el
index d5c67978424..179294cc88e 100644
--- a/lisp/xt-mouse.el
+++ b/lisp/xt-mouse.el
@@ -164,7 +164,7 @@
164With prefix arg, turn XTerm mouse mode on iff arg is positive. 164With prefix arg, turn XTerm mouse mode on iff arg is positive.
165 165
166Turn it on to use emacs mouse commands, and off to use xterm mouse commands." 166Turn it on to use emacs mouse commands, and off to use xterm mouse commands."
167 nil " Mouse" nil 167 nil " Mouse" nil :global t
168 (if xterm-mouse-mode 168 (if xterm-mouse-mode
169 ;; Turn it on 169 ;; Turn it on
170 (unless window-system 170 (unless window-system