aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/cus-theme.el
diff options
context:
space:
mode:
authorDavid Kastrup2005-04-17 16:18:45 +0000
committerDavid Kastrup2005-04-17 16:18:45 +0000
commitbbeb3055a134ec438171afedec683fdb8e8d292d (patch)
tree3ba3874f70a531a6ad413d98481d777c0a7a3b1b /lisp/cus-theme.el
parentec0cf966221e8fe0b03de0549742ae966330a424 (diff)
downloademacs-bbeb3055a134ec438171afedec683fdb8e8d292d.tar.gz
emacs-bbeb3055a134ec438171afedec683fdb8e8d292d.zip
(custom-theme-write-variables): Quote variables
where necessary.
Diffstat (limited to 'lisp/cus-theme.el')
-rw-r--r--lisp/cus-theme.el2
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."
119 (princ " '(") 119 (princ " '(")
120 (prin1 symbol) 120 (prin1 symbol)
121 (princ " ") 121 (princ " ")
122 (prin1 (symbol-value symbol)) 122 (prin1 (custom-quote (symbol-value symbol)))
123 (princ ")"))) 123 (princ ")")))
124 vars) 124 vars)
125 (if (bolp) 125 (if (bolp)