diff options
author | Richard M. Stallman <rms@gnu.org> | 2001-11-25 00:02:05 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2001-11-25 00:02:05 +0000 |
commit | eab26a2fe54db9849b4950db4ee8d86dcf6aac7a (patch) | |
tree | a47845d43f800f53bdae3fbe7303066cca28b78d /lisp/mail/supercite.el | |
parent | 388d6ab529801240f42a2dffec4d7a6a1c5fa560 (diff) | |
download | emacs-eab26a2fe54db9849b4950db4ee8d86dcf6aac7a.tar.gz emacs-eab26a2fe54db9849b4950db4ee8d86dcf6aac7a.tar.bz2 emacs-eab26a2fe54db9849b4950db4ee8d86dcf6aac7a.zip |
(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.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |