Function: sc-cite-regexp

sc-cite-regexp is a byte-compiled function defined in supercite.el.gz.

Signature

(sc-cite-regexp &optional ROOT-REGEXP)

Documentation

Return a regexp describing a Supercited line.

The regexp is the concatenation of sc-citation-leader-regexp, sc-citation-root-regexp, sc-citation-delimiter-regexp, and sc-citation-separator-regexp. If optional ROOT-REGEXP is supplied, use it instead of sc-citation-root-regexp.

Source Code

;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
;; ======================================================================
;; filladapt hooks for supercite 3.1.

(defun sc-cite-regexp (&optional root-regexp)
  "Return a regexp describing a Supercited line.
The regexp is the concatenation of `sc-citation-leader-regexp',
`sc-citation-root-regexp', `sc-citation-delimiter-regexp', and
`sc-citation-separator-regexp'.  If optional ROOT-REGEXP is supplied,
use it instead of `sc-citation-root-regexp'."
  (concat sc-citation-leader-regexp
	  (or root-regexp sc-citation-root-regexp)
	  sc-citation-delimiter-regexp
	  sc-citation-separator-regexp))