Function: gnus-article-search-signature
gnus-article-search-signature is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-article-search-signature)
Documentation
Search the current buffer for the signature separator.
Put point at the beginning of the signature separator.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-article-search-signature ()
"Search the current buffer for the signature separator.
Put point at the beginning of the signature separator."
(let ((cur (point)))
(goto-char (point-max))
(if (if (stringp gnus-signature-separator)
(re-search-backward gnus-signature-separator nil t)
(let ((seps gnus-signature-separator))
(while (and seps
(not (re-search-backward (car seps) nil t)))
(pop seps))
seps))
t
(goto-char cur)
nil)))