I want to use the function ignore
but I want a more meaningful name when using its functionality of not doing anything.
Would like to make a function that takes the same argument possibilities as ignore and pass them to the ignare function. How can one set this thing up ?
I would like the ability to pass arguments that although they have meaning to the programmer, they do not do anything. The arguments are just there as informational indicators (annunciators) that are there for informational purposes only, rather than for executable command instructions.
(defmacro your/ignore (&rest _))
is better than defining a function. – shynur Aug 04 '23 at 16:06ignore
. And in the same way, not expect them to actually perform some operation with them. They are just indicators describing some state at a particular line within the function. They are sort of higher level comments. – Dilna Aug 04 '23 at 16:07your/ignore
will prevent Emacs from executing your code and return anil
. – shynur Aug 04 '23 at 16:15ignore
is a function its arguments get evaluated. I say this because the OP question seems to want whatignore
does. – Drew Aug 04 '23 at 20:09