aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/mail/supercite.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>2001-11-25 00:02:05 +0000
committerRichard M. Stallman <[email protected]>2001-11-25 00:02:05 +0000
commiteab26a2fe54db9849b4950db4ee8d86dcf6aac7a (patch)
treea47845d43f800f53bdae3fbe7303066cca28b78d /lisp/mail/supercite.el
parent388d6ab529801240f42a2dffec4d7a6a1c5fa560 (diff)
(sc-toggle-var): Don't use set-variable or eval-expression.
Eval and set the variable simply.
Diffstat (limited to 'lisp/mail/supercite.el')
-rw-r--r--lisp/mail/supercite.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el
index db4a492de1..e1bac745bf 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)