Function: message-forward-subject-fwd

message-forward-subject-fwd is a byte-compiled function defined in message.el.gz.

Signature

(message-forward-subject-fwd SUBJECT)

Documentation

Generate a SUBJECT for a forwarded message.

The form is: Fwd: Subject, where Subject is the original subject of the message.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-forward-subject-fwd (subject)
  "Generate a SUBJECT for a forwarded message.
The form is: Fwd: Subject, where Subject is the original subject of
the message."
  (if (string-match "^Fwd: " subject)
      subject
    (concat "Fwd: " subject)))