diff options
| author | Eli Zaretskii | 2001-01-07 09:56:59 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-01-07 09:56:59 +0000 |
| commit | 30db89f9d7186daba642166c8d57a0058b03f209 (patch) | |
| tree | d9fdeb0bb3d49d960d042fbecb32d29a5fe5eec5 | |
| parent | 03231f93f3fb4c78ad4ae1771f5c8f3f6376e486 (diff) | |
| download | emacs-30db89f9d7186daba642166c8d57a0058b03f209.tar.gz emacs-30db89f9d7186daba642166c8d57a0058b03f209.zip | |
(Info-goto-emacs-key-command-node): Doc fix.
(Info-goto-emacs-command-node): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 11 | ||||
| -rw-r--r-- | lisp/info.el | 7 |
2 files changed, 14 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 610b1af9050..63f822a51dc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-01-07 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * info.el (Info-goto-emacs-command-node): Doc fix. | ||
| 4 | (Info-goto-emacs-key-command-node): Doc fix. | ||
| 5 | |||
| 1 | 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il> | 6 | 2001-01-06 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 7 | ||
| 3 | * ediff-ve.el (noninteractive): Don't load generic-sc on MS-DOS | 8 | * ediff-ve.el (noninteractive): Don't load generic-sc on MS-DOS |
| @@ -67,6 +72,11 @@ | |||
| 67 | 72 | ||
| 68 | * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete. | 73 | * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete. |
| 69 | 74 | ||
| 75 | 2001-01-04 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 76 | |||
| 77 | * help.el (help-for-help): Fix a typo in a doc string. From | ||
| 78 | kwzh@gnu.org (Karl Heuer). | ||
| 79 | |||
| 70 | 2001-01-03 Dave Love <fx@gnu.org> | 80 | 2001-01-03 Dave Love <fx@gnu.org> |
| 71 | 81 | ||
| 72 | * dired-x.el: Doc fixes. Maintainer change. | 82 | * dired-x.el: Doc fixes. Maintainer change. |
| @@ -1376,7 +1386,6 @@ | |||
| 1376 | `verbatim' so that we don't inadvertently delete a non-existant | 1386 | `verbatim' so that we don't inadvertently delete a non-existant |
| 1377 | directory name. | 1387 | directory name. |
| 1378 | 1388 | ||
| 1379 | >>>>>>> 1.1768 | ||
| 1380 | 2000-11-27 Kenichi Handa <handa@etl.go.jp> | 1389 | 2000-11-27 Kenichi Handa <handa@etl.go.jp> |
| 1381 | 1390 | ||
| 1382 | * international/characters.el: Specify cases and syntaxes for | 1391 | * international/characters.el: Specify cases and syntaxes for |
diff --git a/lisp/info.el b/lisp/info.el index 39f4c5df64a..6239b036fd3 100644 --- a/lisp/info.el +++ b/lisp/info.el | |||
| @@ -2369,7 +2369,7 @@ The locations are of the format used in `Info-history', i.e. | |||
| 2369 | ;;;###autoload | 2369 | ;;;###autoload |
| 2370 | (defun Info-goto-emacs-command-node (command) | 2370 | (defun Info-goto-emacs-command-node (command) |
| 2371 | "Go to the Info node in the Emacs manual for command COMMAND. | 2371 | "Go to the Info node in the Emacs manual for command COMMAND. |
| 2372 | The command is found by looking up in Emacs manual's Command Index | 2372 | The command is found by looking up in Emacs manual's indices |
| 2373 | or in another manual found via COMMAND's `info-file' property or | 2373 | or in another manual found via COMMAND's `info-file' property or |
| 2374 | the variable `Info-file-list-for-emacs'." | 2374 | the variable `Info-file-list-for-emacs'." |
| 2375 | (interactive "CFind documentation for command: ") | 2375 | (interactive "CFind documentation for command: ") |
| @@ -2405,9 +2405,10 @@ the variable `Info-file-list-for-emacs'." | |||
| 2405 | 2405 | ||
| 2406 | ;;;###autoload | 2406 | ;;;###autoload |
| 2407 | (defun Info-goto-emacs-key-command-node (key) | 2407 | (defun Info-goto-emacs-key-command-node (key) |
| 2408 | "Go to the Info node in the Emacs manual the command bound to KEY, a string. | 2408 | "Go to the node in the Emacs manual which describes the command bound to KEY. |
| 2409 | KEY is a string. | ||
| 2409 | Interactively, if the binding is `execute-extended-command', a command is read. | 2410 | Interactively, if the binding is `execute-extended-command', a command is read. |
| 2410 | The command is found by looking up in Emacs manual's Command Index | 2411 | The command is found by looking up in Emacs manual's indices |
| 2411 | or in another manual found via COMMAND's `info-file' property or | 2412 | or in another manual found via COMMAND's `info-file' property or |
| 2412 | the variable `Info-file-list-for-emacs'." | 2413 | the variable `Info-file-list-for-emacs'." |
| 2413 | (interactive "kFind documentation for key: ") | 2414 | (interactive "kFind documentation for key: ") |