diff options
author | Kevin Ryde <user42@zip.com.au> | 2003-07-18 01:28:38 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2003-07-18 01:28:38 +0000 |
commit | 83dbedccdb57aaf60a79769aeb46fa046d2bb82e (patch) | |
tree | 711ee4abf29bcb9e76bf9f2a9f1c6ee4d0d48ff9 | |
parent | 67081a34cb56b2b0a0fa7e4bbc1d58c40685f3b5 (diff) | |
download | guile-83dbedccdb57aaf60a79769aeb46fa046d2bb82e.tar.gz |
Shrink scm_call_X, scm_apply_X and scm_list_X entries, now described
in the manual.
-rw-r--r-- | NEWS | 18 |
1 files changed, 6 insertions, 12 deletions
@@ -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. |