Mercurial > emacs
changeset 12424:aa25c9b2e043
Bind f1 and help like C-h.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 29 Jun 1995 02:50:52 +0000 |
parents | ee433b44920d |
children | 47c3aac35700 |
files | lisp/help.el |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Thu Jun 29 02:50:01 1995 +0000 +++ b/lisp/help.el Thu Jun 29 02:50:52 1995 +0000 @@ -39,9 +39,13 @@ "Keymap for help mode.") (define-key global-map (char-to-string help-char) 'help-command) +(define-key global-map [help] 'help-command) +(define-key global-map [f1] 'help-command) (fset 'help-command help-map) (define-key help-map (char-to-string help-char) 'help-for-help) +(define-key help-map [help] 'help-for-help) +(define-key help-map [f1] 'help-for-help) (define-key help-map "?" 'help-for-help) (define-key help-map "\C-c" 'describe-copying)