From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Philipp Stephani
The number of arguments passed to a function is something that can be=
easily checked by the function, but checking the number of arguments
accepted by a function is generally impossible (think of a function like
=C2=A0 =C2=A0(lambda (&rest args)
=C2=A0 =C2=A0 =C2=A0(if (> (length args) (if (halting-p (car args)) 2 3)= )
=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0(signal 'wrong-number-of-arguments = 39;foo (length args)))
=C2=A0 =C2=A0 =C2=A0...)