When using Emacs, SLIME and Clozure CL I have a minor gripe:
The function signature for aref
(I have not yet seen any other instances) is shown only as (aref a)
.
When I go to source the code in question begins with (defun aref (a &lexpr subs)
. As far as I know, &lexpr
is not a valid CL lambda list keyword. So this indicates that SLIME does not show the correct function signature due to the "weird" keyword.
But when I do the same for svref
, say, there is nothing (to me at least) that corroborates the above hypthesis. So maybe SLIME does something, too.
Can anybody point to relevant documentation (I did not find anything relevant in the SLIME manual and in the CCL manual) or does anybody have a workaround/solution?
SVREF
does not take a list of array indices, since its first argument is a vector. An array might be multi-dimensional, which explains why there are a variadic number of subscripts. ForAREF
, the possible sources are:Of those, only the first one has the uncommon
&lexpr
keyword in its argument list.An experiment:
Let's use the unexported symbol from CCL (auto-completion found it):
This times, it works, let's try it:
The Evolution of Lisp says (emphasis mine):
(see https://www.dreamsongs.com/Files/Hopl2.pdf)
Fix by substitution
You can fix it at the level of Swank, by replacing
&lexpr
by&rest
. You only need to patchccl.lisp
, which provides an implementation forarglist
for Clozure:More details
In fact, in
swank-arglists.lisp
you can see that the stuff that is unknown is put in a separate list, called:unknown-junk
. To see it in action, do:Then, write
(aref
and press Space, which triggers a query for the argument list and produces the following trace:Notice the
:UNKNOWN-JUNK (CCL::&LEXPR CCL::SUBS))
part. Maybe a better fix is to let Swank learn about&lexpr
?