aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 @@
58(define-key help-map "d" 'describe-function) 58(define-key help-map "d" 'describe-function)
59(define-key help-map "f" 'describe-function) 59(define-key help-map "f" 'describe-function)
60 60
61(define-key help-map "F" 'view-emacs-FAQ)
62
61(define-key help-map "i" 'info) 63(define-key help-map "i" 'info)
62(define-key help-map "\C-f" 'Info-goto-emacs-command-node) 64(define-key help-map "\C-f" 'Info-goto-emacs-command-node)
63(define-key help-map "\C-k" 'Info-goto-emacs-key-command-node) 65(define-key help-map "\C-k" 'Info-goto-emacs-key-command-node)
@@ -309,6 +311,11 @@ of the key sequence that ran this command."
309 (interactive) 311 (interactive)
310 (find-file-read-only (expand-file-name "NEWS" data-directory))) 312 (find-file-read-only (expand-file-name "NEWS" data-directory)))
311 313
314(defun view-emacs-FAQ ()
315 "Display the Emacs Frequently Asked Questions (FAQ) file."
316 (interactive)
317 (find-file-read-only (expand-file-name "FAQ" data-directory)))
318
312(defun view-lossage () 319(defun view-lossage ()
313 "Display last 100 input keystrokes." 320 "Display last 100 input keystrokes."
314 (interactive) 321 (interactive)
@@ -345,6 +352,7 @@ c describe-key-briefly. Type a command key sequence;
345f describe-function. Type a function name and get documentation of it. 352f describe-function. Type a function name and get documentation of it.
346C-f Info-goto-emacs-command-node. Type a function name; 353C-f Info-goto-emacs-command-node. Type a function name;
347 it takes you to the Info node for that command. 354 it takes you to the Info node for that command.
355F view-emacs-FAQ. Shows emacs frequently asked questions file.
348i info. The info documentation reader. 356i info. The info documentation reader.
349k describe-key. Type a command key sequence; 357k describe-key. Type a command key sequence;
350 it displays the full documentation. 358 it displays the full documentation.