]> git.llucax.com Git - software/mutt-debian.git/commitdiff
features/ifdef: fixed a typo (Closes: 539974), debian-specific/Muttrc: correctly...
authorAntonio Radici <antonio@dyne.org>
Thu, 10 Sep 2009 22:49:45 +0000 (23:49 +0100)
committerAntonio Radici <antonio@dyne.org>
Thu, 10 Sep 2009 22:49:58 +0000 (23:49 +0100)
  + features/ifdef: fixed a typo (Closes: 539974)
  + debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
    headers (Closes: 474194)
  + upstream/533520-signature-highlight.patch: fixed a problem in signature
    hightlighting if text_flowed was set to 'yes' (Closes: 533520)

debian/changelog
debian/patches/series
debian/patches/upstream/533520-signature-highlight.patch [new file with mode: 0644]

index 2ebdd29158e93b03a8d2e69369ef28c368d1e6b9..36aed2c5d26a02dfef55b0d3529ee8d10c49019d 100644 (file)
@@ -5,19 +5,21 @@ mutt (1.5.20-3) UNRELEASED; urgency=low
 
   [ Antonio Radici ]
   * debian/patches:
+    + features/ifdef: fixed a typo (Closes: 539974)
+    + debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
+      headers (Closes: 474194)
     + upstream/538128-mh-folder-access.patch: MH dirs are now correctly
       parsed (Closes: 538128)
     + upstream/537818-emptycharset.patch: handling empty charsets without
       segfaulting (Closes: 537818)
     + upstream/535096-pop-port.patch: allow a user to specify a port for a pop
       connection, as it was before 1.5.20 (Closes: 535096)
-    + debian-specific/Muttrc: correctly state that exim4 does not strip Bcc:
-      headers (Closes: 474194)
     + upstream/542910-search-segfault.patch: fixes a bug in search which caused
       a segfault (Closes: 542910)
     + upstream/533370-pgp-inline.patch: inline pgp messages now displayed
       correctly even if pgp_auto_decode is set (Closes: 533370)
-    + features/ifdef: fixed a typo (Closes: 539974)
+    + upstream/533520-signature-highlight.patch: fixed a problem in signature
+      hightlighting if text_flowed was set to 'yes' (Closes: 533520)
   * debian/control:
     + Standards-Version bumped to 3.8.3
   * debian/extra/lib/mailto-mutt: patch from madduck@ to correctly handle the
index f2607e809296eac66709f1448dd18adbb007dfb3..bcbefad8ea3fd78d67a2c0ab94e2646748a909d5 100644 (file)
@@ -39,6 +39,9 @@ upstream/534543-imap-port.patch
 upstream/538128-mh-folder-access.patch
 upstream/537818-emptycharset.patch
 upstream/535096-pop-port.patch
+upstream/542910-search-segfault.patch
+upstream/533370-pgp-inline.patch
+upstream/533520-signature-highlight.patch
 misc/hyphen-as-minus.patch
 #misc/manpage-typos.patch
 misc/smime_keys-manpage.patch
diff --git a/debian/patches/upstream/533520-signature-highlight.patch b/debian/patches/upstream/533520-signature-highlight.patch
new file mode 100644 (file)
index 0000000..c2bc2b8
--- /dev/null
@@ -0,0 +1,14 @@
+before this patch mutt failed to highlight some signatures if text_flowed was
+set to yes (see upstream http://bugs.mutt.org/3275)
+
+--- a/handler.c
++++ b/handler.c
+@@ -1500,7 +1500,7 @@
+     l = mutt_strlen (buf);
+     if (l > 0 && buf[l-1] == '\n')
+       buf[--l] = 0;
+-    if (option (OPTTEXTFLOWED))
++    if (mutt_strcmp (buf, "-- ") != 0 && option (OPTTEXTFLOWED))
+     {
+       while (l > 0 && buf[l-1] == ' ')
+       buf[--l] = 0;