# HG changeset patch # User Karl Heuer # Date 761026866 0 # Node ID 0a2c25c9400c8f8c3e209991b70336ac8ac3b17e # Parent c921af3939e88ac12f4900991709f6db5a22e647 (super-apropos-check-doc-file): Don't attempt to retrieve function documentation from a symbol with no function binding. diff -r c921af3939e8 -r 0a2c25c9400c lisp/apropos.el --- a/lisp/apropos.el Sat Feb 12 02:58:48 1994 +0000 +++ b/lisp/apropos.el Sat Feb 12 04:21:06 1994 +0000 @@ -154,7 +154,7 @@ (point)))) item (assq symbol sym-list)) (and (if (= type 1) - (documentation symbol) + (and (fboundp symbol) (documentation symbol)) (documentation-property symbol 'variable-documentation)) (or item (setq item (list symbol nil nil)