From: Karl Heuer Date: Thu, 4 Dec 1997 04:29:45 +0000 (+0000) Subject: (custom-variable-prompt): Ensure valid variable name X-Git-Tag: emacs-20.3~2676 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=db9d97e1f56f86d409227c112356ac1962863758;p=emacs.git (custom-variable-prompt): Ensure valid variable name is selected. --- diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index d1d8ad3d045..35e32afbb6c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -408,7 +408,7 @@ Return a list suitable for use in `interactive'." obarray (lambda (symbol) (and (boundp symbol) (or (get symbol 'custom-type) - (user-variable-p symbol)))))) + (user-variable-p symbol)))) t)) (list (if (equal val "") (if (symbolp v) v nil) (intern val)))))