Variable: sc-cite-frame-alist
sc-cite-frame-alist is a customizable variable defined in
supercite.el.gz.
Value
nil
Documentation
Alist for frame selection during citing.
Each element of this list has the following form:
(INFOKEY ((REGEXP . FRAME)
(REGEXP . FRAME)
(...)))
Where INFOKEY is a key for sc-mail-field, REGEXP is a regular
expression to match against the INFOKEY's value. FRAME is
a citation frame, or a symbol that represents the name of
a variable whose value is a citation frame.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defcustom sc-cite-frame-alist '()
"Alist for frame selection during citing.
Each element of this list has the following form:
(INFOKEY ((REGEXP . FRAME)
(REGEXP . FRAME)
(...)))
Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
expression to match against the INFOKEY's value. FRAME is
a citation frame, or a symbol that represents the name of
a variable whose value is a citation frame."
:type '(repeat (list symbol (repeat (cons regexp
(choice (repeat (repeat sexp))
symbol)))))
:group 'supercite-frames)