emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: suppressable byte compilation warnings and cconv.el


From: Stefan Monnier
Subject: Re: suppressable byte compilation warnings and cconv.el
Date: Thu, 14 Apr 2016 08:04:33 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

> 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]