summaryrefslogtreecommitdiff
path: root/lisp/autoarg.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2000-06-05 08:11:22 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2000-06-05 08:11:22 +0000
commitd3d02e659ec157365eb5c280533f1edf21d86def (patch)
tree9fe42e817da029e93ae1c3b51bc066e6d1507829 /lisp/autoarg.el
parent139f2b7cdc65aa91fba6c022aa3625a50fae3ee5 (diff)
downloademacs-d3d02e659ec157365eb5c280533f1edf21d86def.tar.gz
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* hl-line.el (hl-line-mode): Use the new :global key argument.
Diffstat (limited to 'lisp/autoarg.el')
-rw-r--r--lisp/autoarg.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/autoarg.el b/lisp/autoarg.el
index 3e8e99192b5..e18023f3cb8 100644
--- a/lisp/autoarg.el
+++ b/lisp/autoarg.el
@@ -110,7 +110,7 @@ then invokes the normal binding of \\[autoarg-terminate].
`C-u \\[autoarg-terminate]' invokes the normal binding of \\[autoarg-terminate] four times.
\\{autoarg-mode-map}"
- (global . nil) " Aarg" autoarg-mode-map)
+ nil " Aarg" autoarg-mode-map :global t)
;;;###autoload
(define-minor-mode autoarg-kp-mode
@@ -121,7 +121,7 @@ This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1'
&c to supply digit arguments.
\\{autoarg-kp-mode-map}"
- (global . nil) " Aakp" autoarg-kp-mode-map
+ nil " Aakp" autoarg-kp-mode-map :global t
(if autoarg-kp-mode
(dotimes (i 10)
(let ((sym (intern (format "kp-%d" i))))