From 0af3df1cd62227ba03f71e750bf8c7c5454a019d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 29 Jun 1995 02:50:52 +0000 Subject: [PATCH] Bind f1 and help like C-h. --- lisp/help.el | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisp/help.el b/lisp/help.el index 296975f66f3..3275689fb1f 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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) -- 2.39.2