summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>2006-04-10 15:28:25 +0000
committerRichard M. Stallman <rms@gnu.org>2006-04-10 15:28:25 +0000
commitc9fdebdf3a790aae312ca5b63b3d4916713d289e (patch)
tree2b392ab7183920ab7fb9942921e67aa573385ec1 /lisp
parent8fd0f424be3d31ff138188b192efb9ff363b6383 (diff)
downloademacs-c9fdebdf3a790aae312ca5b63b3d4916713d289e.tar.gz
(finder-mode-map): Add n and p bindings.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/finder.el2
2 files changed, 6 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 378b71c1e74..a0c3e905b50 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-10 Richard Stallman <rms@gnu.org>
+
+ * finder.el (finder-mode-map): Add n and p bindings.
+
2006-04-10 Nick Roberts <nickrob@snap.net.nz>
* progmodes/gdb-ui.el (gdb-init-1): Re-initialise gdb-main-file to nil.
diff --git a/lisp/finder.el b/lisp/finder.el
index fc96381e8f7..1374e1f4e76 100644
--- a/lisp/finder.el
+++ b/lisp/finder.el
@@ -104,6 +104,8 @@
(define-key map [mouse-2] 'finder-mouse-select)
(define-key map "\C-m" 'finder-select)
(define-key map "?" 'finder-summary)
+ (define-key map "n" 'next-line)
+ (define-key map "p" 'previous-line)
(define-key map "q" 'finder-exit)
(define-key map "d" 'finder-list-keywords)
map))