[PATCH] emacs: Allow control over faces for search mode columns.

2010-05-12 Thread Jameson Rollins
/notmuchmail.org/pipermail/notmuch/attachments/20100512/aca747a9/attachment.pgp>

Re: [PATCH] emacs: Allow control over faces for search mode columns.

2010-05-12 Thread Jameson Rollins
On Thu, 29 Apr 2010 08:32:31 +0100, David Edmondson wrote: > Add face declarations for the date, count, matching author and subject > columns in search mode and apply those faces when building the search > mode display. > --- > > This is intended to support 'fruit salad' mode: >http://dme.or

[PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Jameson Rollins
ext attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100512/7598a62b/attachment.pgp>

[PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Nelson Elhage
Hm. You're probably right that it should be ${LDFLAGS:-} for consistency with the others, but what I wrote is functionally correct: ${LDFLAGS-FOO} means "If LDFLAGS is set at all (even to an empty value), substitute $LDFLAGS; otherwise, substitute FOO". ${LDFLAGS:-FOO} is the same, except in the

[PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Jameson Rollins
scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100512/e2f99bec/attachment.pgp>

[PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Nelson Elhage
The configure usage string documents that it respects LDFLAGS, but currently it doesn't do anything with the configure-time LDFLAGS value. --- configure |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure b/configure index c522ad8..90355e8 100755 --- a/configure +

Re: [PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Jameson Rollins
On Wed, 12 May 2010 13:29:55 -0400, Nelson Elhage wrote: > Hm. You're probably right that it should be ${LDFLAGS:-} for > consistency with the others, but what I wrote is functionally correct: > > ${LDFLAGS-FOO} means "If LDFLAGS is set at all (even to an empty > value), substitute $LDFLAGS; othe

Re: [PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Nelson Elhage
Hm. You're probably right that it should be ${LDFLAGS:-} for consistency with the others, but what I wrote is functionally correct: ${LDFLAGS-FOO} means "If LDFLAGS is set at all (even to an empty value), substitute $LDFLAGS; otherwise, substitute FOO". ${LDFLAGS:-FOO} is the same, except in the

Re: [PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Jameson Rollins
On Wed, 12 May 2010 12:45:52 -0400, Nelson Elhage wrote: > The configure usage string documents that it respects LDFLAGS, but > currently it doesn't do anything with the configure-time LDFLAGS > value. > --- > configure |4 > 1 files changed, 4 insertions(+), 0 deletions(-) > > diff --g

[PATCH] configure: Respect LDFLAGS from the environment.

2010-05-12 Thread Nelson Elhage
The configure usage string documents that it respects LDFLAGS, but currently it doesn't do anything with the configure-time LDFLAGS value. --- configure |4 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/configure b/configure index c522ad8..90355e8 100755 --- a/configure +