aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/apropos.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el
index 8cc2940349d..d418be52273 100644
--- a/lisp/apropos.el
+++ b/lisp/apropos.el
@@ -154,7 +154,7 @@ Returns list of symbols and documentation found."
154 (point)))) 154 (point))))
155 item (assq symbol sym-list)) 155 item (assq symbol sym-list))
156 (and (if (= type 1) 156 (and (if (= type 1)
157 (documentation symbol) 157 (and (fboundp symbol) (documentation symbol))
158 (documentation-property symbol 'variable-documentation)) 158 (documentation-property symbol 'variable-documentation))
159 (or item 159 (or item
160 (setq item (list symbol nil nil) 160 (setq item (list symbol nil nil)