changeset 61603:dbec9d2e3f52

(custom-theme-write-variables): Quote variables where necessary.
author David Kastrup <dak@gnu.org>
date Sun, 17 Apr 2005 16:18:45 +0000
parents 71c8a6678c21
children 8c769026ef46
files lisp/ChangeLog lisp/cus-theme.el
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Sun Apr 17 16:04:44 2005 +0000
+++ b/lisp/ChangeLog	Sun Apr 17 16:18:45 2005 +0000
@@ -1,3 +1,8 @@
+2005-04-17  David Kastrup  <dak@gnu.org>
+
+	* cus-theme.el (custom-theme-write-variables): Quote variables
+	where necessary.
+
 2005-04-17  Richard M. Stallman  <rms@gnu.org>
 
 	* jka-compr.el (jka-compr-compression-info-list): Fix custom type.
--- a/lisp/cus-theme.el	Sun Apr 17 16:04:44 2005 +0000
+++ b/lisp/cus-theme.el	Sun Apr 17 16:18:45 2005 +0000
@@ -119,7 +119,7 @@
 		(princ " '(")
 		(prin1 symbol)
 		(princ " ")
-		(prin1 (symbol-value symbol))
+		(prin1 (custom-quote (symbol-value symbol)))
 		(princ ")")))
 	      vars)
       (if (bolp)