1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-29 08:20:20 +02:00

* optargs.scm (lambda*): Bugfix: Replaced ARGLIST -->

non-optional-args.  (Thanks to David Lutterkort.)
This commit is contained in:
Mikael Djurfeldt 1999-06-03 05:02:23 +00:00
parent 8d8fc9da71
commit fa5518d1fa

View file

@ -317,7 +317,7 @@
(error "Too many arguments.")))
'())
,@BODY)))
`(lambda (,@ARGLIST . ,(if rest-arg rest-arg '()))
`(lambda (,@non-optional-args . ,(if rest-arg rest-arg '()))
,@BODY))))))