diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-10-21 17:22:25 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-10-21 17:22:25 +0000 |
commit | b44da9f16bbb5fb1a220a5ed76107cad061a13d3 (patch) | |
tree | 8d3c5b2a9fd87c366fe91e9a26cfd4b5a8088d59 /lisp/emacs-lisp | |
parent | 4b816985c1a0557a0630f2b6e4efe83d81c34980 (diff) | |
download | emacs-b44da9f16bbb5fb1a220a5ed76107cad061a13d3.tar.gz emacs-b44da9f16bbb5fb1a220a5ed76107cad061a13d3.tar.bz2 emacs-b44da9f16bbb5fb1a220a5ed76107cad061a13d3.zip |
(find-library-name): Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/find-func.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el index dea72fc7567..0cebeeb6f7f 100644 --- a/lisp/emacs-lisp/find-func.el +++ b/lisp/emacs-lisp/find-func.el @@ -141,7 +141,7 @@ See the functions `find-function' and `find-variable'." (unless (string-match "elc" suffix) (push suffix suffixes))))) (defun find-library-name (library) - "Return the full name of the elisp source of LIBRARY." + "Return the absolute file name of the Lisp source of LIBRARY." ;; If the library is byte-compiled, try to find a source library by ;; the same name. (if (string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library) |