]> git.eshelyaron.com Git - emacs.git/commitdiff
(custom-theme-write-variables): Quote variables
authorDavid Kastrup <dak@gnu.org>
Sun, 17 Apr 2005 16:18:45 +0000 (16:18 +0000)
committerDavid Kastrup <dak@gnu.org>
Sun, 17 Apr 2005 16:18:45 +0000 (16:18 +0000)
where necessary.

lisp/ChangeLog
lisp/cus-theme.el

index 0c5a98a4c4bc146fd05167b0a59f3ab6d85a7908..1275ba569e48e59410f1ceadecbe6cc775dae973 100644 (file)
@@ -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.
index f1001990d3c49e364cc44422102e1cbc0ee4add4..412403030376d66ce5df36a155a8d25f390821fd 100644 (file)
@@ -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)