[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-12 Thread David Bremner
Austin Clements writes: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. pushed, d

Re: [PATCH] emacs: Fix "not defined at runtime" warning

2012-08-12 Thread David Bremner
Austin Clements writes: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. pushed, d ___ notmuch mailing list notmuch@notmuchmail.org http://notmuchmail.org/mailman/listinf

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Tomi Ollila
On Thu, Aug 09 2012, Austin Clements wrote: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. > > because we only required cl at compile-time (not runtime). This fixes > this warning by requiring cl at runtime, ensuri

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Austin Clements
Quoth Jameson Graef Rollins on Aug 09 at 12:54 am: > On Wed, Aug 08 2012, Austin Clements wrote: > > Previously, the Emacs byte compiler produced the warning > > > > the function `remove-if-not' might not be defined at runtime. > > > > because we only required cl at compile-time (not runtime).

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Austin Clements
Quoth Tomi Ollila on Aug 09 at 10:46 am: > On Thu, Aug 09 2012, Austin Clements wrote: > > > Previously, the Emacs byte compiler produced the warning > > > > the function `remove-if-not' might not be defined at runtime. > > > > because we only required cl at compile-time (not runtime). This

Re: [PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Austin Clements
Quoth Jameson Graef Rollins on Aug 09 at 12:54 am: > On Wed, Aug 08 2012, Austin Clements wrote: > > Previously, the Emacs byte compiler produced the warning > > > > the function `remove-if-not' might not be defined at runtime. > > > > because we only required cl at compile-time (not runtime).

Re: [PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Austin Clements
Quoth Tomi Ollila on Aug 09 at 10:46 am: > On Thu, Aug 09 2012, Austin Clements wrote: > > > Previously, the Emacs byte compiler produced the warning > > > > the function `remove-if-not' might not be defined at runtime. > > > > because we only required cl at compile-time (not runtime). This

Re: [PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Jameson Graef Rollins
On Wed, Aug 08 2012, Austin Clements wrote: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. > > because we only required cl at compile-time (not runtime). This fixes > this warning by requiring cl at runtime, ensurin

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Jameson Graef Rollins
On Wed, Aug 08 2012, Austin Clements wrote: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. > > because we only required cl at compile-time (not runtime). This fixes > this warning by requiring cl at runtime, ensurin

Re: [PATCH] emacs: Fix "not defined at runtime" warning

2012-08-09 Thread Tomi Ollila
On Thu, Aug 09 2012, Austin Clements wrote: > Previously, the Emacs byte compiler produced the warning > > the function `remove-if-not' might not be defined at runtime. > > because we only required cl at compile-time (not runtime). This fixes > this warning by requiring cl at runtime, ensuri

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-08 Thread Austin Clements
Previously, the Emacs byte compiler produced the warning the function `remove-if-not' might not be defined at runtime. because we only required cl at compile-time (not runtime). This fixes this warning by requiring cl at runtime, ensuring that the definition of remove-if-not is available. --

[PATCH] emacs: Fix "not defined at runtime" warning

2012-08-08 Thread Austin Clements
Previously, the Emacs byte compiler produced the warning the function `remove-if-not' might not be defined at runtime. because we only required cl at compile-time (not runtime). This fixes this warning by requiring cl at runtime, ensuring that the definition of remove-if-not is available. --