diff options
| -rw-r--r-- | lisp/ChangeLog | 22 | ||||
| -rw-r--r-- | lisp/proced.el | 6 |
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 @@ | |||
| 1 | 2009-09-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * proced.el (proced-mark-alt): Remove alias. | ||
| 4 | (proced-mode-map): Remove proced-mark-alt. | ||
| 5 | |||
| 6 | * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Add menu entries to | ||
| 7 | Elint file and directory. Remove initialization entry. | ||
| 8 | |||
| 9 | * emacs-lisp/elint.el (elint-file, elint-directory): New autoloaded | ||
| 10 | commands. | ||
| 11 | (elint-current-buffer): Set mode-line-process. | ||
| 12 | (elint-init-env): Handle define-derived-mode. | ||
| 13 | Fix declare-function with unspecified arglist. Guard against odd | ||
| 14 | defalias statements (eg iso-insert's 8859-1-map). | ||
| 15 | (elint-add-required-env): Use a temp buffer. | ||
| 16 | (elint-form): Just print the function/macro name, not the whole form. | ||
| 17 | Return env unchanged if we fail to parse a macro. | ||
| 18 | (elint-forms): Guard against parse errors. | ||
| 19 | (elint-output): New function, to handle batch mode. | ||
| 20 | (elint-log-message): Add optional argument. Use elint-output. | ||
| 21 | (elint-set-mode-line): New function. | ||
| 22 | |||
| 1 | 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change) | 23 | 2009-09-12 Andreas Politz <politza@fh-trier.de> (tiny change) |
| 2 | 24 | ||
| 3 | * emacs-lisp/elp.el (elp-not-profilable): Add more | 25 | * 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.") | |||
| 459 | (define-key km [down] 'next-line) | 459 | (define-key km [down] 'next-line) |
| 460 | (define-key km [up] 'previous-line) | 460 | (define-key km [up] 'previous-line) |
| 461 | ;; marking | 461 | ;; marking |
| 462 | (define-key km "d" 'proced-mark-alt) ; Dired compatibility ("delete") | 462 | (define-key km "d" 'proced-mark) ; Dired compatibility ("delete") |
| 463 | (define-key km "m" 'proced-mark) | 463 | (define-key km "m" 'proced-mark) |
| 464 | (put 'proced-mark :advertised-binding "m") | 464 | (put 'proced-mark :advertised-binding "m") |
| 465 | (define-key km "u" 'proced-unmark) | 465 | (define-key km "u" 'proced-unmark) |
| @@ -717,10 +717,6 @@ The time interval for updates is specified via `proced-auto-update-interval'." | |||
| 717 | (interactive "p") | 717 | (interactive "p") |
| 718 | (proced-do-mark t count)) | 718 | (proced-do-mark t count)) |
| 719 | 719 | ||
| 720 | ;; So we can preferentially advertise the "m" binding in the mode help, | ||
| 721 | ;; rather than the "d" one. | ||
| 722 | (defalias 'proced-mark-alt 'proced-mark) | ||
| 723 | |||
| 724 | (defun proced-unmark (&optional count) | 720 | (defun proced-unmark (&optional count) |
| 725 | "Unmark the current (or next COUNT) processes." | 721 | "Unmark the current (or next COUNT) processes." |
| 726 | (interactive "p") | 722 | (interactive "p") |