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:
parent
8d8fc9da71
commit
fa5518d1fa
1 changed files with 1 additions and 1 deletions
|
@ -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))))))
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue