From eab26a2fe54db9849b4950db4ee8d86dcf6aac7a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 25 Nov 2001 00:02:05 +0000 Subject: [PATCH] (sc-toggle-var): Don't use set-variable or eval-expression. Eval and set the variable simply. --- lisp/mail/supercite.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index db4a492de1d..e1bac745bfc 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el @@ -1870,7 +1870,7 @@ VARIABLE must be a bound symbol. Nil values change to t, non-nil values are changed to nil." (message "%s changed from %s to %s" variable (symbol-value variable) - (set-variable variable (not (eval-expression variable)))) + (set variable (not (symbol-value variable)))) (sc-set-mode-string)) (defun sc-set-variable (var) -- 2.39.5