Variable: gnus-signature-separator
gnus-signature-separator is a customizable variable defined in
gnus-art.el.gz.
Value
("^-- $" "^-- *$")
Documentation
Regexp matching signature separator.
This can also be a list of regexps. In that case, it will be checked from head to tail looking for a separator. Searches will be done from the end of the buffer.
Probably introduced at or before Emacs version 20.1.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defcustom gnus-signature-separator '("^-- $" "^-- *$")
"Regexp matching signature separator.
This can also be a list of regexps. In that case, it will be checked
from head to tail looking for a separator. Searches will be done from
the end of the buffer."
:type '(choice :format "%{%t%}: %[Value Menu%]\n%v"
(regexp)
(repeat :tag "List of regexp" regexp))
:group 'gnus-article-signature)