Mercurial > emacs
changeset 5366:9fb443ed4acf
(super-apropos-check-doc-file): Verify that the doc
string can actually be found from the symbol.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 29 Dec 1993 06:55:23 +0000 |
parents | 362f4c3bd99c |
children | e4f5f2674f34 |
files | lisp/apropos.el |
diffstat | 1 files changed, 7 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/apropos.el Sun Dec 26 20:02:44 1993 +0000 +++ b/lisp/apropos.el Wed Dec 29 06:55:23 1993 +0000 @@ -153,10 +153,13 @@ (1- (point)) (point)))) item (assq symbol sym-list)) - (or item - (setq item (list symbol nil nil) - sym-list (cons item sym-list))) - (setcar (nthcdr type item) doc))) + (and (if (= type 1) + (documentation symbol) + (documentation-property symbol 'variable-documentation)) + (or item + (setq item (list symbol nil nil) + sym-list (cons item sym-list))) + (setcar (nthcdr type item) doc)))) sym-list)) ;; This is passed as the argument to map-atoms, so it is called once for every