1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-28 19:42:02 +00:00

(proced-mode-map): Bind " " to next-line instead of the

command `proced-next-line' removed on 2008-09-06.
This commit is contained in:
Juri Linkov 2008-12-29 00:12:12 +00:00
parent 18e4b9bdcb
commit 5adfa483c2
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2008-12-29 Juri Linkov <juri@jurta.org>
* proced.el (proced-mode-map): Bind " " to next-line instead of the
command `proced-next-line' removed on 2008-09-06.
2008-12-28 Juri Linkov <juri@jurta.org>
* misearch.el (multi-isearch-next-buffer-function): Doc fix.

View File

@ -440,7 +440,7 @@ Important: the match ends just after the marker.")
(defvar proced-mode-map
(let ((km (make-sparse-keymap)))
;; moving
(define-key km " " 'proced-next-line)
(define-key km " " 'next-line)
(define-key km "n" 'next-line)
(define-key km "p" 'previous-line)
(define-key km "\C-n" 'next-line)