diff options
| author | Richard M. Stallman | 1996-09-02 01:05:22 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-09-02 01:05:22 +0000 |
| commit | 2747503c0aa02240f4a21209a19e9cfb6a86e8cf (patch) | |
| tree | 7b087198249ae293d92182c5c9d06e8a79319441 | |
| parent | ff4599fdb52ea5b4d8f8766abe6be7faf4946c3f (diff) | |
| download | emacs-2747503c0aa02240f4a21209a19e9cfb6a86e8cf.tar.gz emacs-2747503c0aa02240f4a21209a19e9cfb6a86e8cf.zip | |
(locate-library): Doc fix.
| -rw-r--r-- | lisp/help.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el index 70bd0175311..8e1317ed0d4 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -667,11 +667,11 @@ Argument is a command definition, usually a symbol with a function definition." | |||
| 667 | nil) | 667 | nil) |
| 668 | 668 | ||
| 669 | (defun locate-library (library &optional nosuffix) | 669 | (defun locate-library (library &optional nosuffix) |
| 670 | "Show the full path name of Emacs library LIBRARY. | 670 | "Show the precise file name of Emacs library LIBRARY. |
| 671 | This command searches the directories in `load-path' like `M-x load-library' | 671 | This command searches the directories in `load-path' like `M-x load-library' |
| 672 | to find the file that `M-x load-library RET LIBRARY RET' would load. | 672 | to find the file that `M-x load-library RET LIBRARY RET' would load. |
| 673 | Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el' | 673 | Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el' |
| 674 | to the specified name LIBRARY (a la calling `load' instead of `load-library')." | 674 | to the specified name LIBRARY." |
| 675 | (interactive "sLocate library: ") | 675 | (interactive "sLocate library: ") |
| 676 | (catch 'answer | 676 | (catch 'answer |
| 677 | (mapcar | 677 | (mapcar |