summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2009-02-11 02:25:06 +0000
committerChong Yidong <cyd@stupidchicken.com>2009-02-11 02:25:06 +0000
commit352f6bff86d820ead574ef9d5dbcfde81caa7184 (patch)
tree0b30bbba5b52ffa20e9e577c07c54afa1ca8832a /lisp/emacs-lisp
parente6a5a411837f7ea38de2bf8ae691ebedf055475a (diff)
downloademacs-352f6bff86d820ead574ef9d5dbcfde81caa7184.tar.gz
emacs-352f6bff86d820ead574ef9d5dbcfde81caa7184.tar.bz2
emacs-352f6bff86d820ead574ef9d5dbcfde81caa7184.zip
(find-library-name, find-library): Doc fixes.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/find-func.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index 9be76080ee0..d33742d9629 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -143,7 +143,8 @@ See the functions `find-function' and `find-variable'."
(unless (string-match "elc" suffix) (push suffix suffixes)))))
(defun find-library-name (library)
- "Return the absolute file name of the Lisp source of LIBRARY."
+ "Return the absolute file name of the Emacs Lisp source of LIBRARY.
+LIBRARY should be a string (the name of the library)."
;; If the library is byte-compiled, try to find a source library by
;; the same name.
(if (string-match "\\.el\\(c\\(\\..*\\)?\\)\\'" library)
@@ -207,7 +208,8 @@ TYPE should be nil to find a function, or `defvar' to find a variable."
;;;###autoload
(defun find-library (library)
- "Find the elisp source of LIBRARY."
+ "Find the Emacs Lisp source of LIBRARY.
+LIBRARY should be a string (the name of the library)."
(interactive
(let* ((dirs (or find-function-source-path load-path))
(suffixes (find-library-suffixes))