diff options
author | Kevin Ryde <user42@zip.com.au> | 2005-04-03 22:41:15 +0000 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2005-04-03 22:41:15 +0000 |
commit | c66c6d535d3e07ff2118614c7e9d6ce7d651b622 (patch) | |
tree | 2f6624128670a185e0b0e2a50b94ffd719fd919f /srfi/srfi-1.h | |
parent | dc7b50ed09164705329eb02cb0fa5e14d9612985 (diff) | |
download | guile-c66c6d535d3e07ff2118614c7e9d6ce7d651b622.tar.gz |
(scm_srfi1_concatenate, scm_srfi1_concatenate_x): Add code
to check argument is a list, scm_append and scm_append_x don't do that
on their "rest" list (in a normal build).
Diffstat (limited to 'srfi/srfi-1.h')
-rw-r--r-- | srfi/srfi-1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/srfi/srfi-1.h b/srfi/srfi-1.h index fff493552..922de3d4b 100644 --- a/srfi/srfi-1.h +++ b/srfi/srfi-1.h @@ -33,6 +33,8 @@ #endif SCM_SRFI1_API SCM scm_srfi1_alist_copy (SCM alist); +SCM_SRFI1_API SCM scm_srfi1_concatenate (SCM lstlst); +SCM_SRFI1_API SCM scm_srfi1_concatenate_x (SCM lstlst); SCM_SRFI1_API SCM scm_srfi1_count (SCM pred, SCM list1, SCM rest); SCM_SRFI1_API SCM scm_srfi1_delete (SCM x, SCM lst, SCM pred); SCM_SRFI1_API SCM scm_srfi1_delete_x (SCM x, SCM lst, SCM pred); |