[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Unused variables compiler warning
- To: (BUG LISPM) at MIT-AI
- Subject: Re: Unused variables compiler warning
- From: KEN@MIT-AI
- Date: Mon ,31 Jul 79 09:48:05 EDT
CC: JONL at MIT-AI
I have never been very happy with either NIL or IGNORE.
For one thing nmemonic names are often desirable even for unused variables.
Putting the unused variables in the front of the function
resolves the problem but makes for very obscure code for anyone
who doesn't know the hack.
For what its worth here's my proposal.
(defun foo (bar &useless i-am-a-unused-variable zap ...)
...)