bug#33340: named match-let doesn't work

2018-11-11 Thread Mark H Weaver
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

bug#33340: named match-let doesn't work

2018-11-11 Thread Alex Kost
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 :-) -

bug#33340: named match-let doesn't work

2018-11-10 Thread Ernesto Gabriel
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