470
I Use This!
Activity Not Available

News

Analyzed about 1 year ago. based on code collected about 1 year ago.
Posted about 7 years ago by Kevin McCarthy
changeset 4240966d41fc branch bookmark tag user Kevin ... [More] McCarthy description Fix $smart_wrap to not be disabled by whitespace-prefixed lines. (closes #3857) changeset:737102af74eb fixed a folded header display issue with $smart_wrap by disabling $smart_wrap for lines beginning with whitespace. Unfortunately, this turns off smart wrapping in the body of an email too, even when the line has other whitespace breaks in it. An earlier commit, changeset:125076e0fdfa added an infinite loop fix when MUTT_PAGER_NSKIP is set, by disabling the smart_wrap if the space backtracking went to the beginning of the line. That is, a line beginning with 1+ whitespace followed by a single long word. Extend this second commit by always disabling the smart_wrap in that case, not just when MUTT_PAGER_NSKIP is set. This also solves the folded header issue without other side effects. files pager.c [Less]
Posted about 7 years ago by Kevin McCarthy
changeset 8a41d1c2f267 branch default bookmark tag tip user ... [More] Kevin McCarthy description Add $change_folder_next option to control mailbox suggestion order. This patch is out of the Gentoo package maintained by Fabian Groffen. From the link below, it appears the original author was Simon Burge. I made some minor changes to get it to apply correctly, and cleaned up the documentation a bit. Original patch description: This patch brings back the original behaviour of change-folder, which some people find more useful. It suggests the next folder in your mailboxes list that has new mail measured from the current folder, instead of the first folder from your mailboxes list in any case. This prevents starvation of folders defined at the back of your list ;) See discussion: http://thread.gmane.org/gmane.mail.mutt.devel/12457 files curs_main.cinit.hmutt.h [Less]
Posted about 7 years ago by Kevin McCarthy
changeset 8a41d1c2f267 branch bookmark tag user Kevin ... [More] McCarthy description Add $change_folder_next option to control mailbox suggestion order. This patch is out of the Gentoo package maintained by Fabian Groffen. From the link below, it appears the original author was Simon Burge. I made some minor changes to get it to apply correctly, and cleaned up the documentation a bit. Original patch description: This patch brings back the original behaviour of change-folder, which some people find more useful. It suggests the next folder in your mailboxes list that has new mail measured from the current folder, instead of the first folder from your mailboxes list in any case. This prevents starvation of folders defined at the back of your list ;) See discussion: http://thread.gmane.org/gmane.mail.mutt.devel/12457 files curs_main.cinit.hmutt.h [Less]
Posted about 7 years ago by Vincent Lefevre
changeset c12f357c909d branch bookmark tag user Vincent Lefevre description Updated French translation. files po/fr.po
Posted about 7 years ago by Vincent Lefevre
changeset c12f357c909d branch default bookmark tag tip user Vincent Lefevre description Updated French translation. files po/fr.po
Posted about 7 years ago by Vincent Lefevre
changeset c5e1f0c241d1 branch bookmark tag user Vincent ... [More] Lefevre description Add %R (number of read messages) for $status_format. files init.hstatus.c [Less]
Posted about 7 years ago by Kevin McCarthy
changeset fbf01f1c87a3 branch bookmark tag user Kevin ... [More] McCarthy description Add message count to $move quadoption prompt. Display the number of messages that will be moved in the quadoption prompt, which might prove helpful for some people. Thank you to Daan van Rossum for suggesting the improvement. files mx.c [Less]
Posted about 7 years ago by Vincent Lefevre
changeset 8fac73c931bc branch bookmark tag user Vincent ... [More] Lefevre description Make sure that fgets and fgetc are undefined before their redefinition. This fixes a potential issue from changeset e0a103845344. files mutt.h [Less]
Posted about 7 years ago by Vincent Lefevre
changeset 8fac73c931bc branch default bookmark tag tip user ... [More] Vincent Lefevre description Make sure that fgets and fgetc are undefined before their redefinition. This fixes a potential issue from changeset e0a103845344. files mutt.h [Less]
Posted about 7 years ago by David Wilson
changeset e0a103845344 branch bookmark tag user David ... [More] Wilson description Use fgets_unlocked and fgetc_unlocked if available. Since mutt does not use threads, there is no reason it should use the locked variants of the FILE* IO functions. This checks if the unlocked functions are available, and if so enables them globally via mutt.h. Cuts load time for a 56k message, 1.8GB /var/mail mailbox from 14 seconds to ~6 seconds, since we avoid acquiring and releasing a mutex for every character of input read. Before: 0m14.376s 74.98% mutt libc-2.18.so [.] _IO_getc 11.87% mutt mutt [.] mbox_parse_mailbox 0.94% mutt [kernel.kallsyms] [k] copy_user_generic_string 0.83% mutt libc-2.18.so [.] __strchr_sse2 0.53% mutt libc-2.18.so [.] __memcpy_sse2 0.44% mutt libc-2.18.so [.] _int_malloc After: 6 seconds 68.92% mutt mutt [.] mbox_parse_mailbox 2.25% mutt [kernel.kallsyms] [k] copy_user_generic_string 1.73% mutt libc-2.18.so [.] __strchr_sse2 1.24% mutt libc-2.18.so [.] __memcpy_sse2 1.17% mutt libc-2.18.so [.] _int_malloc 0.87% mutt libc-2.18.so [.] __strspn_sse42 files configure.acmutt.h [Less]