mutt: 2 new changesets

2007-04-25 Thread Brendan Cully
2 new changesets in mutt: http://dev.mutt.org/hg/mutt/rev/a58527ead950 changeset: 5144:a58527ead950 branch: HEAD tag: tip user:Vincent Lefevre <[EMAIL PROTECTED]> date:Tue Apr 24 17:51:43 2007 -0700 summary: Updated French translation. http://dev.mutt.org/hg/mut

Re: [Mutt] #2884: 256 color support

2007-04-25 Thread Mutt
#2884: 256 color support Comment (by Alain Bench): {{{ Hi, On Tuesday, April 24, 2007 at 17:31:47 -, egmont wrote: > detects the number of colors using "infocmp" | $ tput colors | 256 Bye!Alain. }}} -- Ticket URL:

Re: Cygwin/SASL

2007-04-25 Thread Charles Killian
I was able to get mutt working this morning. To make it work, I had to change getnameinfo to sasl_getnameinfo (probably a cygwin-ism). I'm attaching my patch for anyone else trying to compile mutt with smtp and sasl for cygwin. Basically, the final problem I had (independent of sasl) is that m

Re: [Mutt] #2884: 256 color support

2007-04-25 Thread Moritz Barsnick
Hi, On Tue, Apr 24, 2007 at 12:13:11 -0600, Kyle Wheeler wrote: > The easiest way to do this is like so: Only "something like this", I would guess: > source $HOME/.muttrc-color-`infocmp | grep colors# | sed > 's/.*#\([0-9]\+\).*/\1'` PROMPT> infocmp | grep colors# | sed 's/.*#\([0-9]\+\

Re: [Mutt] #2884: 256 color support

2007-04-25 Thread Kyle Wheeler
On Wednesday, April 25 at 08:05 PM, quoth Moritz Barsnick: Only "something like this", I would guess: Yes, well... :) So make it: -> source $HOME/.muttrc-color-`infocmp | grep 'colors#' | \ sed 's/.*colors#\([0-9]\+\).*/\1/' :-) Indeed! Or, as someone (Alain?) suggested: source $HOME/

Re: [Mutt] #2884: 256 color support

2007-04-25 Thread Thomas Dickey
On Wed, 25 Apr 2007, Moritz Barsnick wrote: it should have returned "8". You sed expression is too greedy. So make it: -> source $HOME/.muttrc-color-`infocmp | grep 'colors#' | \ sed 's/.*colors#\([0-9]\+\).*/\1/' :-) or use the "-1" (dash-one) option of infocmp to put one capability per l