Function: message-goto-subject

message-goto-subject is an interactive and byte-compiled function defined in message.el.gz.

Signature

(message-goto-subject)

Documentation

Move point to the Subject header.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-goto-subject ()
  "Move point to the Subject header."
  (interactive nil message-mode)
  (push-mark)
  (message-position-on-field "Subject"))