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

(Dynamic Wind): Untabify.

(Multiple Values): Use @result.
Reported by Stephen Compall <s11@member.fsf.org>.
This commit is contained in:
Kevin Ryde 2003-07-23 23:53:39 +00:00
parent 83dbedccdb
commit 54148bb85a

View file

@ -345,11 +345,12 @@ of the call to @code{call-with-values}.
@example @example
(call-with-values (lambda () (values 4 5)) (call-with-values (lambda () (values 4 5))
(lambda (a b) b)) (lambda (a b) b))
==> 5 @result{} 5
@end example @end example
@example @example
(call-with-values * -) ==> -1 (call-with-values * -)
@result{} -1
@end example @end example
@end deffn @end deffn