summaryrefslogtreecommitdiff
path: root/lisp/proced.el
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 /lisp/proced.el
parent76314f2c03b15ca84074a0d955f49cbae0e78d2a (diff)
downloademacs-d6549da4bd175e808876d8cf7303cddebb37f4e3.tar.gz
(proced-mark-alt): Remove alias.
(proced-mode-map): Remove proced-mark-alt.
Diffstat (limited to 'lisp/proced.el')
-rw-r--r--lisp/proced.el6
1 files changed, 1 insertions, 5 deletions
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")