Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!gatech!tut.cis.ohio-state.edu!ucbvax!mica.berkeley.edu!wisner From: wisner@mica.Berkeley.EDU (Bill Wisner) Newsgroups: gnu.emacs.gnus Subject: signature file handling Message-ID: Date: 2 Jul 89 19:32:52 GMT Sender: usenet@ucbvax.BERKELEY.EDU Organization: Verrifast Plaine Co Ltd Lines: 42 I don't like having two dashes before my signature file. So I added a variable gnus-signature-separator, which defaults to "--\n" and contains the string that separates your article from your signature. This is a very unofficial patch from a very inexpert elisp hack. Bill Wisner wisner@mica.berkeley.edu ucbvax!mica!wisner I'm not the NRA either. Index: gnuspost.el *** gnuspost.el.~1~ Sat Jul 1 19:38:20 1989 --- gnuspost.el Sun Jul 2 13:29:39 1989 *************** *** 26,31 **** --- 26,34 ---- (defvar gnus-organization-file "/usr/lib/news/organization" "*Local news organization file.") + (defvar gnus-signature-separator "--\n" + "*String to place between article text and signature file.") + (autoload 'news-reply-mode "rnewspost") ;;; *************** *** 330,336 **** (if (file-exists-p signature) (progn (goto-char (point-max)) ! (insert "--\n") (insert-file-contents signature))) )) ;; Prepare article headers. --- 333,340 ---- (if (file-exists-p signature) (progn (goto-char (point-max)) ! (if gnus-signature-separator ! (insert gnus-signature-separator)) (insert-file-contents signature))) )) ;; Prepare article headers.