From db9d97e1f56f86d409227c112356ac1962863758 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 4 Dec 1997 04:29:45 +0000 Subject: [PATCH] (custom-variable-prompt): Ensure valid variable name is selected. --- lisp/cus-edit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))))) -- 2.39.2