diff options
| -rw-r--r-- | lisp/help.el | 8 |
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; | |||
| 345 | f describe-function. Type a function name and get documentation of it. | 352 | f describe-function. Type a function name and get documentation of it. |
| 346 | C-f Info-goto-emacs-command-node. Type a function name; | 353 | C-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. |
| 355 | F view-emacs-FAQ. Shows emacs frequently asked questions file. | ||
| 348 | i info. The info documentation reader. | 356 | i info. The info documentation reader. |
| 349 | k describe-key. Type a command key sequence; | 357 | k describe-key. Type a command key sequence; |
| 350 | it displays the full documentation. | 358 | it displays the full documentation. |