From: Richard M. Stallman Date: Thu, 29 Jun 1995 02:50:52 +0000 (+0000) Subject: Bind f1 and help like C-h. X-Git-Tag: emacs-19.34~3435 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0af3df1cd62227ba03f71e750bf8c7c5454a019d;p=emacs.git Bind f1 and help like C-h. --- 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)