freebsd-ports/mail/mutt-devel/files/patch-14
Jim Mock 551ad216d2 Patch to fix a bug in the pager where \012 is displayed after the PGP
info on signed messages.

Approved by:	maintainer
2001-12-11 11:09:19 +00:00

11 lines
256 B
Text

--- 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);
}
}