From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: doco scm_values Date: Tue, 26 Aug 2003 08:08:26 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87isolbdb9.fsf@zip.com.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1061871425 25469 80.91.224.253 (26 Aug 2003 04:17:05 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 26 Aug 2003 04:17:05 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Aug 26 06:17:03 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19rVGR-0005WW-00 for ; Tue, 26 Aug 2003 06:17:03 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19rVGA-0007Hc-R1 for guile-devel@m.gmane.org; Tue, 26 Aug 2003 00:16:46 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19rVBu-0005Xt-ER for guile-devel@gnu.org; Tue, 26 Aug 2003 00:12:22 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19rV9k-00042j-0A for guile-devel@gnu.org; Tue, 26 Aug 2003 00:10:40 -0400 Original-Received: from [61.8.0.36] (helo=snoopy.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.20) id 19rV70-0002gq-He for guile-devel@gnu.org; Tue, 26 Aug 2003 00:07:19 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.4) with ESMTP id h7PM8t0J025144 for ; Tue, 26 Aug 2003 08:08:55 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h7PM8tkv014281 for ; Tue, 26 Aug 2003 08:08:55 +1000 (EST) Original-Received: from localhost (ppp74.dyn228.pacific.net.au [203.143.228.74]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h7PM8eos009111 for ; Tue, 26 Aug 2003 08:08:49 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19rPVk-0000mZ-00; Tue, 26 Aug 2003 08:08:28 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.3 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2713 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2713 A bit of a tweak and addition for "values", * scheme-control.texi (Multiple Values): In values, show args as "arg1 ... argN". In scm_values, note args is a list and that the returned object shares structure with it. - Scheme Procedure: values arg1 ... argN - C Function: scm_values (args) Delivers all of its arguments to its continuation. Except for continuations created by the `call-with-values' procedure, all continuations take exactly one value. The effect of passing no value or more than one value to continuations that were not created by `call-with-values' is unspecified. For `scm_values', ARGS is a list and the return is a multiple-values object which the caller can return. In the current implementation, that object shares structure with ARGS, so ARGS should not be modified later. _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel