guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core NEWS


From: Keisuke Nishida
Subject: guile/guile-core NEWS
Date: Tue, 26 Jun 2001 08:59:41 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Keisuke Nishida <address@hidden>        01/06/26 08:59:41

Modified files:
        guile-core     : NEWS 

Log message:
        News for scm_call_N and scm_apply_N.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/NEWS.diff?cvsroot=OldCVS&tr1=1.304&tr2=1.305&r1=text&r2=text

Patches:
Index: guile/guile-core/NEWS
diff -u guile/guile-core/NEWS:1.304 guile/guile-core/NEWS:1.305
--- guile/guile-core/NEWS:1.304 Tue Jun 26 03:59:34 2001
+++ guile/guile-core/NEWS       Tue Jun 26 08:59:41 2001
@@ -701,6 +701,23 @@
 
 Instead, use scm_c_memq or scm_memq, scm_memv, scm_member.
 
+** New functions: scm_call_0, scm_call_1, scm_call_2, scm_call_3
+
+Call a procedure with the indicated number of arguments.
+
+Example:
+
+  scm_call_1 (proc, arg1);
+
+** New functions: scm_apply_0, scm_apply_1, scm_apply_2, scm_apply_3
+
+Call a procedure with the indicated number of arguments and a list
+of arguments.
+
+Example:
+
+  scm_apply_1 (proc, arg1, args);
+
 ** New function: scm_c_read (SCM port, void *buffer, scm_sizet size)
 
 Used by an application to read arbitrary number of bytes from a port.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]