This is the mail archive of the
kawa@sources.redhat.com
mailing list for the Kawa project.
kawa.texi patch
- From: Chris Dean <ctdean at sokitomi dot com>
- To: Kawa List <kawa at sources dot redhat dot com>
- Date: Wed, 06 Oct 2004 00:26:25 -0700
- Subject: kawa.texi patch
Typo fix in the let-values doc.
Regards,
Chris Dean
Index: kawa.texi
===================================================================
RCS file: /cvs/kawa/kawa/doc/kawa.texi,v
retrieving revision 1.152
diff -u -w -r1.152 kawa.texi
--- kawa.texi 11 Aug 2004 21:33:04 -0000 1.152
+++ kawa.texi 6 Oct 2004 07:25:50 -0000
@@ -1331,7 +1331,7 @@
error for an @var{expression} to return a number of values that does not
match its corresponding @var{formals}.
@example
-(let-values ((a b . c) (values 1 2 3 4)))
+(let-values (((a b . c) (values 1 2 3 4)))
(list a b c)) --> (1 2 (3 4))
(let ((a 'a) (b 'b) (x 'x) (y 'y))