# HG changeset patch # User Chong Yidong # Date 1234319106 0 # Node ID 9bfebe85710dfcec2e5efa87033fefe132cbae6c # Parent f9435803466aa7a9150a3ab29d60d99734540800 (find-library-name, find-library): Doc fixes. diff -r f9435803466a -r 9bfebe85710d lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Wed Feb 11 02:24:51 2009 +0000 +++ b/lisp/emacs-lisp/find-func.el Wed Feb 11 02:25:06 2009 +0000 @@ -143,7 +143,8 @@ (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 @@ ;;;###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))