Variable: sc-rewrite-header-list

sc-rewrite-header-list is a customizable variable defined in supercite.el.gz.

Value

((sc-no-header) (sc-header-on-said) (sc-header-inarticle-writes)
 (sc-header-regarding-adds) (sc-header-attributed-writes)
 (sc-header-author-writes) (sc-header-verbose)
 (sc-no-blank-line-or-header))

Documentation

List of reference header rewrite functions.

The variable sc-preferred-header-style controls which function in this list is chosen for automatic reference header insertions. Electric reference mode will cycle through this list of functions.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defcustom sc-rewrite-header-list
  '((sc-no-header)
    (sc-header-on-said)
    (sc-header-inarticle-writes)
    (sc-header-regarding-adds)
    (sc-header-attributed-writes)
    (sc-header-author-writes)
    (sc-header-verbose)
    (sc-no-blank-line-or-header))
  "List of reference header rewrite functions.
The variable `sc-preferred-header-style' controls which function in
this list is chosen for automatic reference header insertions.
Electric reference mode will cycle through this list of functions."
  :type '(repeat sexp)
  :risky t
  :group 'supercite)