summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-03-06 05:16:14 +0000
committerRichard M. Stallman <rms@gnu.org>1995-03-06 05:16:14 +0000
commit744bd38acfdded98f69a5794db6cbe086b92f49b (patch)
treef31c7b8e1f2c48630057287b0a4bbf60194594b3 /lisp/help.el
parent0bb1a9f96f90c78841f9df87c267ecf85570cecc (diff)
downloademacs-744bd38acfdded98f69a5794db6cbe086b92f49b.tar.gz
(view-emacs-FAQ): New function. Bind to C-h F.
(help-for-help): Doc fix.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/help.el b/lisp/help.el
index fb4815408e0..3b14a3a2fe9 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -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 @@ of the key sequence that ran this command."
(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 @@ c describe-key-briefly. Type a command key sequence;
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.