Function: sc-toggle-var

sc-toggle-var is a byte-compiled function defined in supercite.el.gz.

Signature

(sc-toggle-var VARIABLE)

Documentation

Boolean toggle VARIABLE's value.

VARIABLE must be a bound symbol. nil values change to t, non-nil values are changed to nil.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defun sc-toggle-var (variable)
  "Boolean toggle VARIABLE's value.
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 (not (symbol-value variable)))))