Function: message-goto-signature

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

Signature

(message-goto-signature)

Documentation

Move point to the beginning of the message signature.

If there is no signature in the article, go to the end and return nil.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-goto-signature ()
  "Move point to the beginning of the message signature.
If there is no signature in the article, go to the end and
return nil."
  (interactive nil message-mode)
  (push-mark)
  (goto-char (point-min))
  (if (re-search-forward message-signature-separator nil t)
      (forward-line 1)
    (goto-char (point-max))
    nil))