Gnus development mailing list
 help / color / mirror / Atom feed
From: Hallvard B Furuseth <h.b.furuseth@usit.uio.no>
Subject: Re: Your signature is 10 lines??
Date: Sat, 27 Jul 1996 00:36:49 +0200 (MET DST)	[thread overview]
Message-ID: <199607262236.AAA15738@bombur2.uio.no> (raw)
In-Reply-To: <w8sybk88i0z.fsf@hler.ifi.uio.no>

>From: Lars Magne Ingebrigtsen <larsi@hler.ifi.uio.no>
>Newsgroups: gnu.emacs.gnus
> 
>Victor Miller <victor@ccr-p.ida.org> writes:
> 
>> In using the new gnus (5.2.36), whenever I post, I get a warning that
>> my signature is 10 lines.  It isn't -- it's 5 lines.  Where's the bug?
>> -- 
>> Victor S. Miller              | " ... Meanwhile, those of us who can compute
>> victor@ccr-p.ida.org          | can hardly be expected to keep writing papers
>> CCR, Princeton, NJ 08540      | saying 'I can do the following useless
>>                               | calculation in 2 seconds', and indeed what
>>                               | editor would publish them?"  -- Oliver Atkin
>> 
>>  
>>  
>> 
> 
> When Gnus says that your signature is ten lines, it is ten lines.  :-)
> 
> Remove the trailing blank lines from your signature file.

It looks like a safe bet that this wil become a FAQ...
Maybe you should insert something like this:
  (goto-char (point-max))
  (skip-chars-backward " \t\n")
  (forward-line 1)
  (and (not (eobp))
       (y-or-n-p (format "Delete the trailing blank line%s %s? "
                         (if (looking-at ".*\n[ \t\n]") "s" "")
                         (if has-signature "after the signature " "")))
       (delete-region (point) (point-max)))


Also, I suspect that every
	(re-search-forward message-signature-separator)
in message.el should be
	(goto-char (point-max))
>>>	(if (re-search-backward ...)
	    (goto-char (match-end 0)))

-- 
Hallvard


       reply	other threads:[~1996-07-26 22:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <ulwwzsqx0t.fsf@ccr-p.ida.org>
     [not found] ` <w8sybk88i0z.fsf@hler.ifi.uio.no>
1996-07-26 22:36   ` Hallvard B Furuseth [this message]
1996-07-27  4:21     ` Steven L Baur
1996-07-27 17:24     ` Lars Magne Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199607262236.AAA15738@bombur2.uio.no \
    --to=h.b.furuseth@usit.uio.no \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).