Mercurial > emacs
comparison lisp/cus-theme.el @ 61603:dbec9d2e3f52
(custom-theme-write-variables): Quote variables
where necessary.
author | David Kastrup <dak@gnu.org> |
---|---|
date | Sun, 17 Apr 2005 16:18:45 +0000 |
parents | 695cf19ef79e |
children | e559c2c766bc e1fbb019c538 |
comparison
equal
deleted
inserted
replaced
61602:71c8a6678c21 | 61603:dbec9d2e3f52 |
---|---|
117 (unless (bolp) | 117 (unless (bolp) |
118 (princ "\n")) | 118 (princ "\n")) |
119 (princ " '(") | 119 (princ " '(") |
120 (prin1 symbol) | 120 (prin1 symbol) |
121 (princ " ") | 121 (princ " ") |
122 (prin1 (symbol-value symbol)) | 122 (prin1 (custom-quote (symbol-value symbol))) |
123 (princ ")"))) | 123 (princ ")"))) |
124 vars) | 124 vars) |
125 (if (bolp) | 125 (if (bolp) |
126 (princ " ")) | 126 (princ " ")) |
127 (princ ")") | 127 (princ ")") |