bug#47550: [PATCH] elisp mode doesn't support non-list argument lists
Mikael Djurfeldt <[email protected]>
| Newsgroups | gmane.lisp.guile.bugs |
|---|---|
| Message-ID | <CAA2XvwLBd95zr8S4EciACng1=sjhcUU7PJPnQx9YjP4uk9EZrQ@mail.gmail.com> |
Fixed in commit 01bfd18f. Thanks! On Thu, Apr 1, 2021 at 6:19 PM Vasilij Schneidermann <[email protected]> wrote: > When I've tried porting existing elisp code, I've found that `(defun foo > nil 1)` errors out (on Guile 3 and master) , but `(defun foo () 1)` > doesn't. The following patch rectifies this by treating `nil` the same > as `()` when compiling a lambda. >