summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2006-06-20 16:54:29 +0000
committerFabian Groffen <grobian@gentoo.org>2006-06-20 16:54:29 +0000
commit16e97e353196a2aa38fd769e9920228888c9b281 (patch)
tree6952c41426cfea45cacc2342f6a55450ffd2848c /mail-client/muttng/files
parentBump to recent snapshot (two commits since last one), cleanup of old snapshot (diff)
downloadgentoo-2-16e97e353196a2aa38fd769e9920228888c9b281.tar.gz
gentoo-2-16e97e353196a2aa38fd769e9920228888c9b281.tar.bz2
gentoo-2-16e97e353196a2aa38fd769e9920228888c9b281.zip
Bump to recent snapshot (two commits since last one), cleanup of old snapshot
(Portage version: 2.1_rc2) (Unsigned Manifest commit)
Diffstat (limited to 'mail-client/muttng/files')
-rw-r--r--mail-client/muttng/files/digest-muttng-200603093
-rw-r--r--mail-client/muttng/files/muttng-20060309-break_thread.patch13
-rw-r--r--mail-client/muttng/files/muttng-20060309-statusbar_length.patch14
3 files changed, 0 insertions, 30 deletions
diff --git a/mail-client/muttng/files/digest-muttng-20060309 b/mail-client/muttng/files/digest-muttng-20060309
deleted file mode 100644
index 3419493e8eb9..000000000000
--- a/mail-client/muttng/files/digest-muttng-20060309
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 ce7976a03d02c1f324cd1e3586f284a7 muttng-20060309.tar.gz 2733534
-RMD160 c84f9727fefe131fa6ba78f824f4bdad4578fe34 muttng-20060309.tar.gz 2733534
-SHA256 d1820c7d48487736f910dded1f130c0f23ce0248d8cb16ed37eebd9c44cae7f6 muttng-20060309.tar.gz 2733534
diff --git a/mail-client/muttng/files/muttng-20060309-break_thread.patch b/mail-client/muttng/files/muttng-20060309-break_thread.patch
deleted file mode 100644
index 3be2cc7c05a1..000000000000
--- a/mail-client/muttng/files/muttng-20060309-break_thread.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: thread.c
-===================================================================
---- thread.c (revision 791)
-+++ thread.c (working copy)
-@@ -1271,7 +1271,7 @@
- {
- mutt_free_list (&hdr->env->in_reply_to);
- mutt_free_list (&hdr->env->references);
-- hdr->env->irt_changed = hdr->env->refs_changed = 1;
-+ hdr->env->irt_changed = hdr->env->refs_changed = hdr->changed = 1;
- clean_references (hdr->thread, hdr->thread->child);
- }
-
diff --git a/mail-client/muttng/files/muttng-20060309-statusbar_length.patch b/mail-client/muttng/files/muttng-20060309-statusbar_length.patch
deleted file mode 100644
index 0f409bf2966c..000000000000
--- a/mail-client/muttng/files/muttng-20060309-statusbar_length.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Index: status.c
-===================================================================
---- status.c (revision 791)
-+++ status.c (working copy)
-@@ -316,6 +316,8 @@
- * if we have enough space for buffer, format lines to $COLS-$SidebarWidth
- * only to not wrap past end of screen
- */
-- mutt_FormatString (buf, (COLS-SW)>len?len:(COLS-SW), p, status_format_str,
-+ int width = COLS - SW;
-+ mutt_FormatString (buf, (width >= len ? len : (width + 1)),
-+ p, status_format_str,
- (unsigned long) menu, 0);
- }