[Mutt] #3058: [PATCH] mutt keys unmapped after pinentry-curses use

2008-05-22 Thread Mutt
#3058: [PATCH] mutt keys unmapped after pinentry-curses use Using the pgp classic backend, I've found that after being prompted for a passphrase by pinentry curses that my keybindings no longer work. I have to reload my config or take some other action to cause the screen to be redrawn (Ctrl-

Re: [Mutt] #681: rc of mutt_display_message differs between builtin

2008-05-22 Thread Mutt
#681: rc of mutt_display_message differs between builtin and external pager Comment (by Paul Walker): {{{ On Wed, May 21, 2008 at 11:23:16PM -0500, Kyle Wheeler wrote: > Set $prompt_after. Ah. Yes, that does it; hitting space (and possibly other keys) at the Command prompt gives the same e

Re: [PATCH] init warning

2008-05-22 Thread Rocco Rutte
Hi, * Dan Fandrich wrote: I'm not sure you can always rely on the standard C99 format specifiers being available in all those cases. Sure, there'll be situations where this will break, but the current solution is partly broken, too. But since this one is IMHO more portable than before, we'l

Re: [PATCH] init warning

2008-05-22 Thread Rocco Rutte
Hi, * Rocco Rutte wrote: Using the current code as fallback together with the SIZEOF_LONG==4 check, the attached patch only leaves me with warnings about format modifiers not being C90 compatible but without argument size warnings in 32bit and 64bit compilation mode. This seems to be much

Re: Strange display problem with 1.5.18

2008-05-22 Thread Christian Ebert
* André Berger on Thursday, May 22, 2008 at 13:42:53 +0200 > * Rocco Rutte (2008-05-22): >> * André Berger wrote: > [...] >> Okay, since it's pager and index, it must be some header. The only thing >> relevant to encoding/internationalization issues between 1.5.17 and 1.5.18 >> is that X-Label he

Re: Strange display problem with 1.5.18

2008-05-22 Thread André Berger
* Rocco Rutte (2008-05-22): > * André Berger wrote: > >> More testing shows the issue is related to "--enable-gpgme". A clean >> source with > >> ./configure --enable-gpgme && make all && ./mutt -n -F /dev/null -f >> ~/Mail/mbox > >> is enough. With --enable-gpgme left out, it works, with all my

Re: Strange display problem with 1.5.18

2008-05-22 Thread Rocco Rutte
Hi, * André Berger wrote: More testing shows the issue is related to "--enable-gpgme". A clean source with ./configure --enable-gpgme && make all && ./mutt -n -F /dev/null -f ~/Mail/mbox is enough. With --enable-gpgme left out, it works, with all my patches and configuration options appl

Re: Strange display problem with 1.5.18

2008-05-22 Thread André Berger
* Rocco Rutte (2008-05-22): > * André Berger wrote: [...] > Okay, since it's pager and index, it must be some header. The only thing > relevant to encoding/internationalization issues between 1.5.17 and 1.5.18 > is that X-Label headers now have to be RfC2047-encoded. Could that be the > reason?

Re: Strange display problem with 1.5.18

2008-05-22 Thread Rocco Rutte
Hi, * André Berger wrote: Thanks for your attention! LANG=en_US.UTF-8 # in bash Character encoding: Unicode (UTF-8) # Mac OS X Terminal.app Do Set LANG environment variable on startup # Mac OS Terminal.app That's what I've guessed. - where does that happen (pager, index, everywh

Re: Strange display problem with 1.5.18

2008-05-22 Thread André Berger
* Rocco Rutte (2008-05-22): > * André Berger wrote: > >> since 1.5.18 (+nntp +compressed), I'm experiencing a strange problem. >> Uppercase Umlauts (ÄÖÜ) and sz (ß) are displayed incorrectly, as >> "?~D", "?~V", "?~\"; "?~_". Lowercase Umlauts are OK. This is for >> example with "text/plain; charse

Re: [Mutt] #1535: attachments of type "application/xxx" cannot be

2008-05-22 Thread Mutt
#1535: attachments of type "application/xxx" cannot be viewed Changes (by pdmef): * status: new => closed * resolution: => invalid Comment: Please see the auto_view command. -- Ticket URL:

Re: Strange display problem with 1.5.18

2008-05-22 Thread Rocco Rutte
Hi, * André Berger wrote: since 1.5.18 (+nntp +compressed), I'm experiencing a strange problem. Uppercase Umlauts (ÄÖÜ) and sz (ß) are displayed incorrectly, as "?~D", "?~V", "?~\"; "?~_". Lowercase Umlauts are OK. This is for example with "text/plain; charset=UTF-8; format=flowed" resp. "text/

Re: [Mutt] #3057: mutt-1.5.18: mutt crashes while accessing imap

2008-05-22 Thread Mutt
#3057: mutt-1.5.18: mutt crashes while accessing imap mailboxes defined Comment (by Olaf Föllinger): {{{ * Mutt <[EMAIL PROTECTED]> [2008-05-21 18:40:55]: > #3057: mutt-1.5.18: mutt crashes while accessing imap mailboxes defined > > Comment (by pdmef): > > Thanks for the quick response.

Re: [PATCH] init warning

2008-05-22 Thread Dan Fandrich
On Thu, May 22, 2008 at 08:22:09AM +0200, Rocco Rutte wrote: > -# if SIZEOF_OFF_T == 8 > -# define OFF_T_FMT "%lld" > +# if HAVE_C99_INTTYPES > +# if SIZEOF_OFF_T == 8 > +# define OFF_T_FMT "%" PRId64 > +# else > +# define OFF_T_FMT "%" PRId32 > +# endif > # else > -# define OFF_T_FMT "%l

mutt: 6 new changesets

2008-05-22 Thread Brendan Cully
6 new changesets in mutt: http://dev.mutt.org/hg/mutt/rev/bba92e401440 changeset: 5401:bba92e401440 branch: HEAD tag: tip user:Rocco Rutte <[EMAIL PROTECTED]> date:Wed May 21 23:20:23 2008 -0700 summary: Guard idata->mailbox read in imap_mailbox_state. Closes #30