# HG changeset patch # User Richard M. Stallman # Date 794466974 0 # Node ID fe008aef4cf1cd1d4e50ae8ed2434bcd759f123e # Parent 0c3d448059491446d4d5686b4d5922bca6283c37 (view-emacs-FAQ): New function. Bind to C-h F. (help-for-help): Doc fix. diff -r 0c3d44805949 -r fe008aef4cf1 lisp/help.el --- a/lisp/help.el Mon Mar 06 04:37:18 1995 +0000 +++ b/lisp/help.el Mon Mar 06 05:16:14 1995 +0000 @@ -58,6 +58,8 @@ (define-key help-map "d" 'describe-function) (define-key help-map "f" 'describe-function) +(define-key help-map "F" 'view-emacs-FAQ) + (define-key help-map "i" 'info) (define-key help-map "\C-f" 'Info-goto-emacs-command-node) (define-key help-map "\C-k" 'Info-goto-emacs-key-command-node) @@ -309,6 +311,11 @@ (interactive) (find-file-read-only (expand-file-name "NEWS" data-directory))) +(defun view-emacs-FAQ () + "Display the Emacs Frequently Asked Questions (FAQ) file." + (interactive) + (find-file-read-only (expand-file-name "FAQ" data-directory))) + (defun view-lossage () "Display last 100 input keystrokes." (interactive) @@ -345,6 +352,7 @@ f describe-function. Type a function name and get documentation of it. C-f Info-goto-emacs-command-node. Type a function name; it takes you to the Info node for that command. +F view-emacs-FAQ. Shows emacs frequently asked questions file. i info. The info documentation reader. k describe-key. Type a command key sequence; it displays the full documentation.