Function: sc-uncite-region
sc-uncite-region is an interactive and byte-compiled function defined
in supercite.el.gz.
Signature
(sc-uncite-region START END)
Documentation
Uncite a region delineated by START and END.
First runs sc-pre-uncite-hook.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defun sc-uncite-region (start end)
"Uncite a region delineated by START and END.
First runs `sc-pre-uncite-hook'."
(interactive "r")
(undo-boundary)
(let ((frame (sc-scan-info-alist sc-uncite-frame-alist)))
(if (and frame (symbolp frame))
(setq frame (symbol-value frame)))
(or frame (setq frame sc-default-uncite-frame))
(run-hooks 'sc-pre-uncite-hook)
(regi-interpret frame start end)))