Alex Kost writes:
> Ernesto Gabriel (2018-11-11 00:44 -0300) wrote:
>
>> match-let works as advertised, but a named match-let gives errors
>
> I think this is the same as:
> https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22925
Indeed, thanks for pointing that out. The bug is now fixed by commit
Ernesto Gabriel (2018-11-11 00:44 -0300) wrote:
> match-let works as advertised, but a named match-let gives errors
I think this is the same as:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=22925
Sorry, I am just reporting about the repeated bug, I don't know what
should be done about it :-)
-
match-let works as advertised, but a named match-let gives errors
for example
(match-let (((a . b) '(1 . 2))) (list a b)) => (1 2)
but
(match-let loop (((a . b) '(1 . 2))) (list a b))
does not work, even though it's basically the above code but instead it's
named
syntax according to the reference