# HG changeset patch # User Glenn Morris # Date 1252723342 0 # Node ID 5db88d7b996f4095798e1ddc0a5cce84d66092c4 # Parent b866a533c9f3fdb1eef3b9cda984fdde4d9181ea (proced-mark-alt): Remove alias. (proced-mode-map): Remove proced-mark-alt. diff -r b866a533c9f3 -r 5db88d7b996f lisp/ChangeLog --- a/lisp/ChangeLog Sat Sep 12 02:42:03 2009 +0000 +++ b/lisp/ChangeLog Sat Sep 12 02:42:22 2009 +0000 @@ -1,3 +1,25 @@ +2009-09-12 Glenn Morris + + * 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 (tiny change) * emacs-lisp/elp.el (elp-not-profilable): Add more diff -r b866a533c9f3 -r 5db88d7b996f lisp/proced.el --- a/lisp/proced.el Sat Sep 12 02:42:03 2009 +0000 +++ b/lisp/proced.el Sat Sep 12 02:42:22 2009 +0000 @@ -459,7 +459,7 @@ (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 @@ (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")