aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuri Linkov2008-12-29 00:12:12 +0000
committerJuri Linkov2008-12-29 00:12:12 +0000
commit5adfa483c25671e9e058dd72599140636ff2cea3 (patch)
tree5aaa3d2bf9a61689863be5804125bb54f9e8ea95
parent18e4b9bdcb1c908f8430b53f0af5f25232b8d234 (diff)
downloademacs-5adfa483c25671e9e058dd72599140636ff2cea3.tar.gz
emacs-5adfa483c25671e9e058dd72599140636ff2cea3.zip
(proced-mode-map): Bind " " to next-line instead of the
command `proced-next-line' removed on 2008-09-06.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/proced.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 7c2d8fa747b..6e93991542d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-12-29 Juri Linkov <juri@jurta.org>
2
3 * proced.el (proced-mode-map): Bind " " to next-line instead of the
4 command `proced-next-line' removed on 2008-09-06.
5
12008-12-28 Juri Linkov <juri@jurta.org> 62008-12-28 Juri Linkov <juri@jurta.org>
2 7
3 * misearch.el (multi-isearch-next-buffer-function): Doc fix. 8 * misearch.el (multi-isearch-next-buffer-function): Doc fix.
diff --git a/lisp/proced.el b/lisp/proced.el
index 2004410a17b..9b79a8046d8 100644
--- a/lisp/proced.el
+++ b/lisp/proced.el
@@ -440,7 +440,7 @@ Important: the match ends just after the marker.")
440(defvar proced-mode-map 440(defvar proced-mode-map
441 (let ((km (make-sparse-keymap))) 441 (let ((km (make-sparse-keymap)))
442 ;; moving 442 ;; moving
443 (define-key km " " 'proced-next-line) 443 (define-key km " " 'next-line)
444 (define-key km "n" 'next-line) 444 (define-key km "n" 'next-line)
445 (define-key km "p" 'previous-line) 445 (define-key km "p" 'previous-line)
446 (define-key km "\C-n" 'next-line) 446 (define-key km "\C-n" 'next-line)