On Wed, 02 Jan 2002 at 16:41:42 +0100, Vincent Lefevre wrote:
> I still have the \012 character problem with PGP-signed messages
> in Mutt 1.3.25:
> 
> [-- Fin de sortie PGP --]
> \012
> [-- Les données suivantes sont signées --]
> \012
> 
> I thought this bug was fixed. Or perhaps I have misunderstood...

I don't think it was ever committed.  The patch is attached.  Thomas,
can we get this in CVS?

- jim

-- 
jim mock <[EMAIL PROTECTED]>     http://soupnazi.org/ | [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);
   }
 }

Reply via email to