Variable: sc-default-recite-frame
sc-default-recite-frame is a customizable variable defined in
supercite.el.gz.
Value
((begin (sc-fill-if-different)) ("^[ ]*$" nil)
((sc-cite-regexp) (sc-recite-line (sc-cite-regexp)))
(t (sc-cite-line)) (end (sc-fill-if-different "")))
Documentation
Default REGI frame for reciting a region.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defcustom sc-default-recite-frame
'(;; initialize fill state when entering frame
(begin (sc-fill-if-different))
;; do nothing on a blank line
("^[ \t]*$" nil)
;; if we're looking at a cited line, recite it
((sc-cite-regexp) (sc-recite-line (sc-cite-regexp)))
;; otherwise, the line is uncited, so just cite it
(t (sc-cite-line))
;; be sure when we're done that we fill the last cited paragraph.
(end (sc-fill-if-different "")))
"Default REGI frame for reciting a region."
:type '(repeat (repeat sexp))
:risky t
:group 'supercite-frames)