diff options
author | David Kastrup <dak@gnu.org> | 2005-04-17 16:18:45 +0000 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2005-04-17 16:18:45 +0000 |
commit | bbeb3055a134ec438171afedec683fdb8e8d292d (patch) | |
tree | 3ba3874f70a531a6ad413d98481d777c0a7a3b1b /lisp/cus-theme.el | |
parent | ec0cf966221e8fe0b03de0549742ae966330a424 (diff) | |
download | emacs-bbeb3055a134ec438171afedec683fdb8e8d292d.tar.gz |
(custom-theme-write-variables): Quote variables
where necessary.
Diffstat (limited to 'lisp/cus-theme.el')
-rw-r--r-- | lisp/cus-theme.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/cus-theme.el b/lisp/cus-theme.el index f1001990d3c..41240303037 100644 --- a/lisp/cus-theme.el +++ b/lisp/cus-theme.el @@ -119,7 +119,7 @@ It includes all variables in list VARS." (princ " '(") (prin1 symbol) (princ " ") - (prin1 (symbol-value symbol)) + (prin1 (custom-quote (symbol-value symbol))) (princ ")"))) vars) (if (bolp) |