mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
(custom-theme-write-variables): Quote variables
where necessary.
This commit is contained in:
parent
ec0cf96622
commit
bbeb3055a1
2 changed files with 6 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue