On Wed, 12 Dec 2001 at 09:36:13 -0600, tim lupfer wrote:
> hey, did anyone ever happen to come up with an answer for the \012
> 1.3.24 weirdness? I finally decided to upgrade some of my machines,
> and little things like random \012's on my screen bother me.
>
> e.g.
> [-- End of PGP output --]
> \012
> [-- The following data is signed --]
> \012
There was a patch for this sent to mutt-dev a few days ago. For those
of you using the FreeBSD mutt-devel port, I committed the patch the
other night. For those of you that aren't using FreeBSD or the port,
the patch is attached.
- jim
--
jim mock <[EMAIL PROTECTED]> http://geekhouse.net/ | [EMAIL PROTECTED]
--- muttlib.c~ Mon Nov 26 20:11:54 2001
+++ muttlib.c Mon Dec 10 23:41:39 2001
@@ -1227,7 +1227,7 @@
while (*t)
{
state_putc (*t, s);
- if (*t++ == '\n' && *t)
+ if (*t++ == '\n' && *t && IsPrint(*t))
state_mark_attach (s);
}
}