diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-02 01:05:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-02 01:05:22 +0000 |
commit | 49334658ab3f3a3cdb87bfee04da06f910df11a8 (patch) | |
tree | 980d5c3eeda91d6918a0ae7cf7ef338de0426405 /lisp/help.el | |
parent | 0355a19ef4c43b1708a8c0d01058cb04a90253a5 (diff) | |
download | emacs-49334658ab3f3a3cdb87bfee04da06f910df11a8.tar.gz |
(locate-library): Doc fix.
Diffstat (limited to 'lisp/help.el')
-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." nil) (defun locate-library (library &optional nosuffix) - "Show the full path name of Emacs library LIBRARY. + "Show the precise file name of Emacs library LIBRARY. This command searches the directories in `load-path' like `M-x load-library' to find the file that `M-x load-library RET LIBRARY RET' would load. Optional second arg NOSUFFIX non-nil means don't add suffixes `.elc' or `.el' -to the specified name LIBRARY (a la calling `load' instead of `load-library')." +to the specified name LIBRARY." (interactive "sLocate library: ") (catch 'answer (mapcar |