mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
lisp/help-fns.el (describe-variable): Fix completion.
http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00112.html
This commit is contained in:
parent
d451951a53
commit
8d17e7ca1f
2 changed files with 8 additions and 2 deletions
|
|
@ -635,8 +635,8 @@ it is displayed along with the global value."
|
|||
"Describe variable: ")
|
||||
obarray
|
||||
(lambda (vv)
|
||||
(or (special-variable-p vv)
|
||||
(get vv 'variable-documentation)))
|
||||
(or (get vv 'variable-documentation)
|
||||
(not (keywordp vv))))
|
||||
t nil nil
|
||||
(if (symbolp v) (symbol-name v))))
|
||||
(list (if (equal val "")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue