Function: sc-header-on-said
sc-header-on-said is a byte-compiled function defined in
supercite.el.gz.
Signature
(sc-header-on-said)
Documentation
"On <date>, <from> said:" unless:
1. the "from" field cannot be found, in which case nothing is inserted;
2. the "date" field is missing in which case only the from part is printed.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defun sc-header-on-said ()
"\"On <date>, <from> said:\" unless:
1. the \"from\" field cannot be found, in which case nothing is inserted;
2. the \"date\" field is missing in which case only the from part is printed."
(let ((sc-mumble "")
(whofrom (sc-whofrom)))
(if whofrom
(insert sc-reference-tag-string
(sc-hdr "On " (sc-mail-field "date") ", ")
whofrom " said:\n"))))