From bbeb3055a134ec438171afedec683fdb8e8d292d Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Sun, 17 Apr 2005 16:18:45 +0000 Subject: [PATCH] (custom-theme-write-variables): Quote variables where necessary. --- lisp/ChangeLog | 5 +++++ lisp/cus-theme.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) 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) -- 2.39.2