diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-09-14 09:17:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-09-14 09:17:32 +0000 |
commit | 47fc33caf07695ee88fb8963ef8a4c93facf97bb (patch) | |
tree | f841a2add284664308dfe83283daf4f8a584a1f0 /lisp/info.el | |
parent | 11183104f3b41e0acb6871f11a23ae9f376de4a0 (diff) | |
download | emacs-47fc33caf07695ee88fb8963ef8a4c93facf97bb.tar.gz |
(Info-mode-map): Bind M-s like s.
Diffstat (limited to 'lisp/info.el')
-rw-r--r-- | lisp/info.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/info.el b/lisp/info.el index d2c0c669500..59416d79329 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1415,6 +1415,8 @@ If no reference to follow, moves to the next node, or up if none." (define-key Info-mode-map "p" 'Info-prev) (define-key Info-mode-map "q" 'Info-exit) (define-key Info-mode-map "s" 'Info-search) + ;; For consistency with Rmail. + (define-key Info-mode-map "\M-s" 'Info-search) (define-key Info-mode-map "t" 'Info-top-node) (define-key Info-mode-map "u" 'Info-up) (define-key Info-mode-map "," 'Info-index-next) |