diff options
Diffstat (limited to 'mail/mutt/files/patch-browser.c')
-rw-r--r-- | mail/mutt/files/patch-browser.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mail/mutt/files/patch-browser.c b/mail/mutt/files/patch-browser.c index 45f206e92ef8..26bd6245b33a 100644 --- a/mail/mutt/files/patch-browser.c +++ b/mail/mutt/files/patch-browser.c @@ -1,5 +1,6 @@ -Index: browser.c -@@ -80,6 +80,12 @@ +--- browser.c.orig 2016-10-08 19:35:50 UTC ++++ browser.c +@@ -80,6 +80,12 @@ static int browser_compare_subject (cons struct folder_file *pa = (struct folder_file *) a; struct folder_file *pb = (struct folder_file *) b; @@ -12,7 +13,7 @@ Index: browser.c int r = mutt_strcoll (pa->name, pb->name); return ((BrowserSort & SORT_REVERSE) ? -r : r); -@@ -90,6 +96,12 @@ +@@ -90,6 +96,12 @@ static int browser_compare_date (const v struct folder_file *pa = (struct folder_file *) a; struct folder_file *pb = (struct folder_file *) b; @@ -25,7 +26,7 @@ Index: browser.c int r = pa->mtime - pb->mtime; return ((BrowserSort & SORT_REVERSE) ? -r : r); -@@ -100,6 +112,12 @@ +@@ -100,6 +112,12 @@ static int browser_compare_size (const v struct folder_file *pa = (struct folder_file *) a; struct folder_file *pb = (struct folder_file *) b; |