Function: sc-raw-mode-toggle
sc-raw-mode-toggle is an interactive and byte-compiled function
defined in supercite.el.gz.
Signature
(sc-raw-mode-toggle)
Documentation
Toggle, in one fell swoop, two important SC variables:
sc-fixup-whitespace-p and sc-auto-fill-region-p.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
;; ======================================================================
;; variable toggling
(defun sc-raw-mode-toggle ()
"Toggle, in one fell swoop, two important SC variables:
`sc-fixup-whitespace-p' and `sc-auto-fill-region-p'."
(interactive)
(setq sc-fixup-whitespace-p (not sc-fixup-whitespace-p)
sc-auto-fill-region-p (not sc-auto-fill-region-p))
(force-mode-line-update))