Function: message-simplify-subject
message-simplify-subject is a byte-compiled function defined in
message.el.gz.
Signature
(message-simplify-subject SUBJECT &optional FUNCTIONS)
Documentation
Return simplified SUBJECT.
Do so by calling each one-argument function in the list of functions
specified by FUNCTIONS, if non-nil, or by the variable
message-simplify-subject-functions otherwise.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-simplify-subject (subject &optional functions)
"Return simplified SUBJECT.
Do so by calling each one-argument function in the list of functions
specified by FUNCTIONS, if non-nil, or by the variable
`message-simplify-subject-functions' otherwise."
(dolist (fun (or functions message-simplify-subject-functions) subject)
(setq subject (funcall fun subject))))