diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2010-07-23 03:51:48 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2010-07-23 03:51:48 +0200 |
commit | fe4be04c37fe73fa966ca66bd6be42c898c004ac (patch) | |
tree | e82866bd7d22a676425ee33e1b4da0bc9bfa065d /lisp/help-fns.el | |
parent | a77cfeaf4be9f60708ead31b6f92015bdb154129 (diff) | |
download | emacs-fe4be04c37fe73fa966ca66bd6be42c898c004ac.tar.gz |
* help-fns.el (find-lisp-object-file-name): Doc fix (bug#6494).
Diffstat (limited to 'lisp/help-fns.el')
-rw-r--r-- | lisp/help-fns.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 86e9411b140..18db4f443f6 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -231,8 +231,8 @@ if the variable `help-downcase-arguments' is non-nil." "Guess the file that defined the Lisp object OBJECT, of type TYPE. OBJECT should be a symbol associated with a function, variable, or face; alternatively, it can be a function definition. -If TYPE is `variable', search for a variable definition. -If TYPE is `face', search for a face definition. +If TYPE is `defvar', search for a variable definition. +If TYPE is `defface', search for a face definition. If TYPE is the value returned by `symbol-function' for a function symbol, search for a function definition. |