summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-12 02:42:22 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-12 02:42:22 +0000
commitd6549da4bd175e808876d8cf7303cddebb37f4e3 (patch)
tree8857b659b0c91c8065de5be251e2fd50b48cbe64
parent76314f2c03b15ca84074a0d955f49cbae0e78d2a (diff)
downloademacs-d6549da4bd175e808876d8cf7303cddebb37f4e3.tar.gz
emacs-d6549da4bd175e808876d8cf7303cddebb37f4e3.tar.bz2
emacs-d6549da4bd175e808876d8cf7303cddebb37f4e3.zip
(proced-mark-alt): Remove alias.
(proced-mode-map): Remove proced-mark-alt.
-rw-r--r--lisp/ChangeLog22
-rw-r--r--lisp/proced.el6
2 files changed, 23 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index f6935ce2064..50aea7a570f 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,25 @@
+2009-09-12 Glenn Morris <rgm@gnu.org>
+
+ * proced.el (proced-mark-alt): Remove alias.
+ (proced-mode-map): Remove proced-mark-alt.
+
+ * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to
+ Elint file and directory. Remove initialization entry.
+
+ * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded
+ commands.
+ (elint-current-buffer): Set mode-line-process.
+ (elint-init-env): Handle define-derived-mode.
+ Fix declare-function with unspecified arglist. Guard against odd
+ defalias statements (eg iso-insert's 8859-1-map).
+ (elint-add-required-env): Use a temp buffer.
+ (elint-form): Just print the function/macro name, not the whole form.
+ Return env unchanged if we fail to parse a macro.
+ (elint-forms): Guard against parse errors.
+ (elint-output): New function, to handle batch mode.
+ (elint-log-message): Add optional argument. Use elint-output.
+ (elint-set-mode-line): New function.
+
2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change)
* emacs-lisp/elp.el (elp-not-profilable): Add more
diff --git a/lisp/proced.el b/lisp/proced.el
index 39ce00326a7..cd9255cfdee 100644
--- a/lisp/proced.el
+++ b/lisp/proced.el
@@ -459,7 +459,7 @@ Important: the match ends just after the marker.")
(define-key km [down] 'next-line)
(define-key km [up] 'previous-line)
;; marking
- (define-key km "d" 'proced-mark-alt) ; Dired compatibility ("delete")
+ (define-key km "d" 'proced-mark) ; Dired compatibility ("delete")
(define-key km "m" 'proced-mark)
(put 'proced-mark :advertised-binding "m")
(define-key km "u" 'proced-unmark)
@@ -717,10 +717,6 @@ The time interval for updates is specified via `proced-auto-update-interval'."
(interactive "p")
(proced-do-mark t count))
-;; So we can preferentially advertise the "m" binding in the mode help,
-;; rather than the "d" one.
-(defalias 'proced-mark-alt 'proced-mark)
-
(defun proced-unmark (&optional count)
"Unmark the current (or next COUNT) processes."
(interactive "p")