aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/cus-theme.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0c5a98a4c4b..1275ba569e4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12005-04-17 David Kastrup <dak@gnu.org>
2
3 * cus-theme.el (custom-theme-write-variables): Quote variables
4 where necessary.
5
12005-04-17 Richard M. Stallman <rms@gnu.org> 62005-04-17 Richard M. Stallman <rms@gnu.org>
2 7
3 * jka-compr.el (jka-compr-compression-info-list): Fix custom type. 8 * jka-compr.el (jka-compr-compression-info-list): Fix custom type.
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)