[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: suppressable byte compilation warnings and cconv.el
From: |
Paul Pogonyshev |
Subject: |
Re: suppressable byte compilation warnings and cconv.el |
Date: |
Thu, 14 Apr 2016 17:44:55 +0200 |
> For those cases where you don't actually know whether it's used or not
> (most typically this happens in macros), you can instead use the
> `ignore' function
OK, good enough for my usecase. Thank you.
Paul
On 14 April 2016 at 14:04, Stefan Monnier <address@hidden> wrote:
>> To clarify why I want it. I have some procedurally generated
>> functions, which I byte-compile after generation.
>
> For those cases where you don't actually know whether it's used or not
> (most typically this happens in macros), you can instead use the
> `ignore' function:
>
> (defun foo (arg1 arg2)
> (ignore arg1 arg2)
> ...)
>
>
> -- Stefan