From 83dbedccdb57aaf60a79769aeb46fa046d2bb82e Mon Sep 17 00:00:00 2001 From: Kevin Ryde Date: Fri, 18 Jul 2003 01:28:38 +0000 Subject: [PATCH] Shrink scm_call_X, scm_apply_X and scm_list_X entries, now described in the manual. --- NEWS | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/NEWS b/NEWS index 4f3f11ea0..4cc9ce1c3 100644 --- a/NEWS +++ b/NEWS @@ -1739,24 +1739,18 @@ 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); +Call a procedure with the indicated number of arguments. See "Fly +Evaluation" in the manual. ** 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); +Call a procedure with the indicated number of arguments and a list of +further arguments. See "Fly Evaluation" in the manual. ** New functions: scm_list_1, scm_list_2, scm_list_3, scm_list_4, scm_list_5 -Create a list of the given number of elements. +Create a list of the given number of elements. See "List +Constructors" in the manual. ** Renamed function: scm_listify has been replaced by scm_list_n.