From: David Kastrup Date: Sun, 17 Apr 2005 16:18:45 +0000 (+0000) Subject: (custom-theme-write-variables): Quote variables X-Git-Tag: ttn-vms-21-2-B4~946 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bbeb3055a134ec438171afedec683fdb8e8d292d;p=emacs.git (custom-theme-write-variables): Quote variables where necessary. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0c5a98a4c4b..1275ba569e4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-04-17 David Kastrup + + * cus-theme.el (custom-theme-write-variables): Quote variables + where necessary. + 2005-04-17 Richard M. Stallman * 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." (princ " '(") (prin1 symbol) (princ " ") - (prin1 (symbol-value symbol)) + (prin1 (custom-quote (symbol-value symbol))) (princ ")"))) vars) (if (bolp)