From 3762eca1ff34975a9e09cf0b19769196b3ccafd6 Mon Sep 17 00:00:00 2001 From: ueno Date: Sat, 24 May 2003 18:08:37 +0000 Subject: [PATCH] (liece-command-save-variables): Fixed. --- lisp/liece-commands.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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)) -- 1.7.10.4