From: Juanma Barranquero Date: Mon, 4 Apr 2011 22:33:12 +0000 (+0200) Subject: lisp/help-fns.el: Fix mistake in previous change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~412 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6f4e1aeddaa0c767fc2490da8e490565bf6182e2;p=emacs.git lisp/help-fns.el: Fix mistake in previous change. --- diff --git a/lisp/help-fns.el b/lisp/help-fns.el index 0876b34d3ed..206a9af3a90 100644 --- a/lisp/help-fns.el +++ b/lisp/help-fns.el @@ -636,7 +636,7 @@ it is displayed along with the global value." obarray (lambda (vv) (or (get vv 'variable-documentation) - (not (keywordp vv)))) + (and (boundp vv) (not (keywordp vv))))) t nil nil (if (symbolp v) (symbol-name v)))) (list (if (equal val "")