1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-07 18:30:25 +02:00

Shrink scm_call_X, scm_apply_X and scm_list_X entries, now described

in the manual.
This commit is contained in:
Kevin Ryde 2003-07-18 01:28:38 +00:00
parent 67081a34cb
commit 83dbedccdb

18
NEWS
View file

@ -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.