]> git.eshelyaron.com Git - emacs.git/commitdiff
* autoarg.el (autoarg-mode, autoarg-kp-mode):
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 5 Jun 2000 08:11:22 +0000 (08:11 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 5 Jun 2000 08:11:22 +0000 (08:11 +0000)
* hl-line.el (hl-line-mode): Use the new :global key argument.

lisp/ChangeLog
lisp/autoarg.el
lisp/hl-line.el

index 2d4fa55229b0163cb7c062f3b2e11733b29ea723..8e456e0c6fe607dfbb0cd803eaa0bcca81b75ec4 100644 (file)
@@ -1,5 +1,27 @@
 2000-06-05  Stefan Monnier  <monnier@cs.yale.edu>
 
+       * autoarg.el (autoarg-mode, autoarg-kp-mode):
+       * hl-line.el (hl-line-mode): Use the new :global key argument.
+
+       * tar-mode.el (tar-header-block-recompute-checksum): Remove.
+       (tar-clip-time-string): Prepend a space.
+       (tar-grind-file-mode): Construct a string rather than modifying one.
+       (tar-header-block-summarize): Fix docstring.
+       Use `format' rather than an error-prone set of copy-loops.
+
+       * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
+       (diff-goto-source, diff-unified->context, diff-context->unified)
+       (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
+       understand the format output by the `-p' argument to diff.
+
+       * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list) 
+       (sh-re-done): Use defconst.
+       (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
+       (sh-help-string-for-variable, sh-guess-basic-offset):
+       Don't quote lambdas.
+       (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
+       (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
+
        * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
        (mh-letter-mode): Derive from text-mode.
        This implicitly means that it now calls kill-all-local-variables.
index 3e8e99192b52e7ec3bae5bca2b3bede7869457d4..e18023f3cb8bc4dfddb98af9969da0799d0ed989 100644 (file)
@@ -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))))
index 8a5d839c384bb3700aa4701bb946cde2efe59737..f5229ef94409dc1980dfda1d85615ed4e3771498 100644 (file)
@@ -81,7 +81,7 @@
 With ARG, turn Hl-Line mode on if ARG is positive, off otherwise.
 Uses functions `hl-line-unhighlight' and `hl-line-highlight' on
 `pre-command-hook' and `post-command-hook'."
-  (global . nil) nil nil
+  nil nil nil :global t
   
   (if hl-line-mode
       (progn