# HG changeset patch # User Karl Heuer # Date 881209785 0 # Node ID a7bab1d0c5e3c5e47338c0732191f6a230763cf9 # Parent ba46225fd687a72b3cf2e9c295d95d9a315e2c64 (custom-variable-prompt): Ensure valid variable name is selected. diff -r ba46225fd687 -r a7bab1d0c5e3 lisp/cus-edit.el --- a/lisp/cus-edit.el Thu Dec 04 04:28:41 1997 +0000 +++ b/lisp/cus-edit.el Thu Dec 04 04:29:45 1997 +0000 @@ -408,7 +408,7 @@ 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)))))