* files.el (auto-mode-alist): Use delphi-mode for .dpr files.
+ * proced.el (proced-mode-map): Bind "d" to proced-mark-alt.
+ (proced-mark-alt): New alias, to control the advertised key. (Bug#4362)
+
2009-09-06 Nick Roberts <nickrob@snap.net.nz>
* vc-git.el (vc-git-annotate-command): Use separator to parse
(define-key km [down] 'next-line)
(define-key km [up] 'previous-line)
;; marking
- (define-key km "d" 'proced-mark) ; Dired compatibility ("delete")
+ (define-key km "d" 'proced-mark-alt) ; Dired compatibility ("delete")
(define-key km "m" 'proced-mark)
(define-key km "u" 'proced-unmark)
(define-key km "\177" 'proced-unmark-backward)
(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")