Function: sc-header-verbose
sc-header-verbose is a byte-compiled function defined in
supercite.el.gz.
Signature
(sc-header-verbose)
Documentation
Very verbose, some say gross.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/supercite.el.gz
(defun sc-header-verbose ()
"Very verbose, some say gross."
(let ((sc-mumble "")
(whofrom (sc-whofrom))
(tag sc-reference-tag-string))
(if whofrom
(insert (sc-hdr (concat tag "On ") (sc-mail-field "date") ",\n")
(or (sc-hdr tag (sc-mail-field "sc-author") "\n" t)
(concat tag whofrom "\n"))
(sc-hdr (concat tag "from the organization of ")
(sc-mail-field "organization") "\n")
(let ((rtag (concat tag "who can be reached at: ")))
(or (sc-hdr rtag (sc-mail-field "sc-from-address") "\n" t)
(sc-hdr rtag (sc-mail-field "sc-reply-address") "\n" t)
""))
(sc-hdr
(concat tag "(whose comments are cited below with \"")
(sc-mail-field "sc-citation") "\"),\n")
(sc-hdr (concat tag "had this to say in article ")
(sc-mail-field "message-id") "\n")
(sc-hdr (concat tag "in newsgroups ")
(sc-mail-field "newsgroups") "\n")
(sc-hdr (concat tag "concerning the subject of ")
(sc-mail-field "subject") "\n")
(sc-hdr (concat tag "(see ")
(sc-mail-field "references")
" for more details)\n")))))