(custom-theme-write-variables): Quote variables

where necessary.
This commit is contained in:
David Kastrup 2005-04-17 16:18:45 +00:00
parent ec0cf96622
commit bbeb3055a1
2 changed files with 6 additions and 1 deletions

View 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.

View 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)