* help-fns.el (describe-variable): Complete all variables having
documentation, including keywords.
http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
+2011-04-06 Juanma Barranquero <lekktu@gmail.com>
+
+ Backport revno:103823 and revno:103824 from trunk.
+ * help-fns.el (describe-variable): Complete all variables having
+ documentation, including keywords.
+ http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
+
2011-03-24 Juanma Barranquero <lekktu@gmail.com>
* vc-annotate.el (vc-annotate-show-log-revision-at-line):
"Describe variable: ")
obarray
(lambda (vv)
- (and (not (keywordp vv))
- (or (boundp vv)
- (get vv 'variable-documentation))))
+ (or (get vv 'variable-documentation)
+ (and (boundp vv) (not (keywordp vv)))))
t nil nil
(if (symbolp v) (symbol-name v))))
(list (if (equal val "")