aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2000-06-05 08:11:22 +0000
committerStefan Monnier2000-06-05 08:11:22 +0000
commitd3d02e659ec157365eb5c280533f1edf21d86def (patch)
tree9fe42e817da029e93ae1c3b51bc066e6d1507829
parent139f2b7cdc65aa91fba6c022aa3625a50fae3ee5 (diff)
downloademacs-d3d02e659ec157365eb5c280533f1edf21d86def.tar.gz
emacs-d3d02e659ec157365eb5c280533f1edf21d86def.zip
* autoarg.el (autoarg-mode, autoarg-kp-mode):
* hl-line.el (hl-line-mode): Use the new :global key argument.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/autoarg.el4
-rw-r--r--lisp/hl-line.el2
3 files changed, 25 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2d4fa55229b..8e456e0c6fe 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,27 @@
12000-06-05 Stefan Monnier <monnier@cs.yale.edu> 12000-06-05 Stefan Monnier <monnier@cs.yale.edu>
2 2
3 * autoarg.el (autoarg-mode, autoarg-kp-mode):
4 * hl-line.el (hl-line-mode): Use the new :global key argument.
5
6 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
7 (tar-clip-time-string): Prepend a space.
8 (tar-grind-file-mode): Construct a string rather than modifying one.
9 (tar-header-block-summarize): Fix docstring.
10 Use `format' rather than an error-prone set of copy-loops.
11
12 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
13 (diff-goto-source, diff-unified->context, diff-context->unified)
14 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
15 understand the format output by the `-p' argument to diff.
16
17 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
18 (sh-re-done): Use defconst.
19 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
20 (sh-help-string-for-variable, sh-guess-basic-offset):
21 Don't quote lambdas.
22 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
23 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
24
3 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it. 25 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
4 (mh-letter-mode): Derive from text-mode. 26 (mh-letter-mode): Derive from text-mode.
5 This implicitly means that it now calls kill-all-local-variables. 27 This implicitly means that it now calls kill-all-local-variables.
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].
110`C-u \\[autoarg-terminate]' invokes the normal binding of \\[autoarg-terminate] four times. 110`C-u \\[autoarg-terminate]' invokes the normal binding of \\[autoarg-terminate] four times.
111 111
112\\{autoarg-mode-map}" 112\\{autoarg-mode-map}"
113 (global . nil) " Aarg" autoarg-mode-map) 113 nil " Aarg" autoarg-mode-map :global t)
114 114
115;;;###autoload 115;;;###autoload
116(define-minor-mode autoarg-kp-mode 116(define-minor-mode autoarg-kp-mode
@@ -121,7 +121,7 @@ This is similar to \\[autoarg-mode] but rebinds the keypad keys `kp-1'
121&c to supply digit arguments. 121&c to supply digit arguments.
122 122
123\\{autoarg-kp-mode-map}" 123\\{autoarg-kp-mode-map}"
124 (global . nil) " Aakp" autoarg-kp-mode-map 124 nil " Aakp" autoarg-kp-mode-map :global t
125 (if autoarg-kp-mode 125 (if autoarg-kp-mode
126 (dotimes (i 10) 126 (dotimes (i 10)
127 (let ((sym (intern (format "kp-%d" i)))) 127 (let ((sym (intern (format "kp-%d" i))))
diff --git a/lisp/hl-line.el b/lisp/hl-line.el
index 8a5d839c384..f5229ef9440 100644
--- a/lisp/hl-line.el
+++ b/lisp/hl-line.el
@@ -81,7 +81,7 @@
81With ARG, turn Hl-Line mode on if ARG is positive, off otherwise. 81With ARG, turn Hl-Line mode on if ARG is positive, off otherwise.
82Uses functions `hl-line-unhighlight' and `hl-line-highlight' on 82Uses functions `hl-line-unhighlight' and `hl-line-highlight' on
83`pre-command-hook' and `post-command-hook'." 83`pre-command-hook' and `post-command-hook'."
84 (global . nil) nil nil 84 nil nil nil :global t
85 85
86 (if hl-line-mode 86 (if hl-line-mode
87 (progn 87 (progn