From: ueno Date: Sat, 24 May 2003 18:08:37 +0000 (+0000) Subject: (liece-command-save-variables): Fixed. X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=3762eca1ff34975a9e09cf0b19769196b3ccafd6;p=elisp%2Fliece.git (liece-command-save-variables): Fixed. --- diff --git a/lisp/liece-commands.el b/lisp/liece-commands.el index 01f4913..2d20e1b 100644 --- a/lisp/liece-commands.el +++ b/lisp/liece-commands.el @@ -838,10 +838,7 @@ Prefix argument ARG is regarded as distance from yank pointer." print-length) (dolist (variable liece-saved-forms) (prin1 `(setq ,variable - ',(let ((value (symbol-value variable))) - (if (memq value '(t nil)) - value - (list 'quote value)))) + ',(symbol-value variable)) (current-buffer)) (insert "\n")))) (setq liece-save-variables-are-dirty nil))