]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-variable-prompt): Ensure valid variable name
authorKarl Heuer <kwzh@gnu.org>
Thu, 4 Dec 1997 04:29:45 +0000 (04:29 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 4 Dec 1997 04:29:45 +0000 (04:29 +0000)
is selected.

lisp/cus-edit.el

index d1d8ad3d045ca9820e2d5a752e2e89a1e028aa7a..35e32afbb6c20bbc87bd2f56254864088dcc4aeb 100644 (file)
@@ -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)))))