diff options
author | Chong Yidong <cyd@stupidchicken.com> | 2005-09-06 03:14:46 +0000 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2005-09-06 03:14:46 +0000 |
commit | f4885d8137feeee620e5cd224093d1fcb71b3af0 (patch) | |
tree | af0f9ca70c9a65150253e335b659f8362ccfa5e2 /lisp/custom.el | |
parent | 4a2358e9b441957fee140ac981cea71720984e6f (diff) | |
download | emacs-f4885d8137feeee620e5cd224093d1fcb71b3af0.tar.gz |
Fix last change to custom-push-theme.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index 2b714a7b458..d634160e534 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -649,7 +649,8 @@ See `custom-known-themes' for a list of known themes." (progn (setcar (cdr setting) mode) (setcar (cddr setting) value)) - (if (null old) + (if (and (null old) + (boundp symbol)) (setq old (list (list 'standard 'set |