* message.el (message-signature-separator-for-insertion): New customizable
variable which is used for signature separator.
* message.el (message-insert-signature): Use variable
`message-signature-separator-for-insertion' instead of hard code.
+2001-08-17 KANEMATSU Daiji <kanematu@sra.co.jp>
+
+ * lisp/message.el (message-signature-separator-for-insertion): New
+ customizable variable which is used for signature separator.
+ * lisp/message.el (message-insert-signature): Use variable
+ `message-signature-separator-for-insertion' instead of hard code.
+
2001-08-15 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
* texi/gnus-ja.texi (Browsing the Web): Fix typo.
:type 'regexp
:group 'message-various)
+(defcustom message-signature-separator-for-insertion "-- \n"
+ "*Signature separator. This value will be inserted as signature separator
+when composing message. Default value is \"-- \\n\". Notice: Changing this
+value may go against RFC-1036 and draft-ietf-usefor-article-05.txt. "
+ :type 'string
+ :group 'message-insertion)
+
(defcustom message-elide-ellipsis "\n[...]\n\n"
"*The string which is inserted for elided text."
:type 'string
;; Insert the signature.
(unless (bolp)
(insert "\n"))
- (insert "\n-- \n")
+ (insert "\n" message-signature-separator-for-insertion)
+ (unless (bolp)
+ (insert "\n"))
(if (eq signature t)
(insert-file-contents message-signature-file)
(insert signature))