summaryrefslogtreecommitdiff
path: root/mail/mutt-devel
diff options
context:
space:
mode:
authorJim Mock <jim@FreeBSD.org>2001-12-11 11:09:19 +0000
committerJim Mock <jim@FreeBSD.org>2001-12-11 11:09:19 +0000
commit551ad216d27f08205290cc789a7931d1ed935c95 (patch)
treeb27f984e0694e8bc7bcad7d59e9c66dc49649a22 /mail/mutt-devel
parentAdd checkcats.py - a script that verifyes that master categories in all ports (diff)
Patch to fix a bug in the pager where \012 is displayed after the PGP
info on signed messages. Approved by: maintainer
Notes
Notes: svn path=/head/; revision=51350
Diffstat (limited to 'mail/mutt-devel')
-rw-r--r--mail/mutt-devel/files/patch-1411
1 files changed, 11 insertions, 0 deletions
diff --git a/mail/mutt-devel/files/patch-14 b/mail/mutt-devel/files/patch-14
new file mode 100644
index 000000000000..5a0f2b48a820
--- /dev/null
+++ b/mail/mutt-devel/files/patch-14
@@ -0,0 +1,11 @@
+--- 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);
+ }
+ }