projects
/
jscl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9bd8cd6
)
fix MULTIPLE-VALUE-BIND
author
David Vazquez
<davazp@gmail.com>
Sat, 26 Jan 2013 10:45:11 +0000
(10:45 +0000)
committer
David Vazquez
<davazp@gmail.com>
Sat, 26 Jan 2013 10:45:11 +0000
(10:45 +0000)
ecmalisp.lisp
patch
|
blob
|
history
diff --git
a/ecmalisp.lisp
b/ecmalisp.lisp
index
fb5cfff
..
b5606f7
100644
(file)
--- a/
ecmalisp.lisp
+++ b/
ecmalisp.lisp
@@
-701,7
+701,7
@@
function mv(){
(values-list args))
(defmacro multiple-value-bind (variables value-from &body body)
- `(multiple-value-call (lambda (,@variables &rest ,(gensym))
+ `(multiple-value-call (lambda (&optional ,@variables &rest ,(gensym))
,@body)
,value-from))