From 6f4e1aeddaa0c767fc2490da8e490565bf6182e2 Mon Sep 17 00:00:00 2001 From: Juanma Barranquero Date: Tue, 5 Apr 2011 00:33:12 +0200 Subject: [PATCH] lisp/help-fns.el: Fix mistake in previous change. --- lisp/help-fns.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "") -- 2.11.4.GIT