diff options
author | Gary Houston <ghouston@arglist.com> | 2001-07-22 20:17:28 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 2001-07-22 20:17:28 +0000 |
commit | d1bc66027ef9081ab86bb7a1e5061700df022e87 (patch) | |
tree | 4291ef741bdabade9b16295c21ddc93c84ab4092 /srfi/srfi-14.h | |
parent | f3805ebb7cd244512e9f1d05c46d45df653da633 (diff) | |
download | guile-d1bc66027ef9081ab86bb7a1e5061700df022e87.tar.gz |
* srfi-14.c (scm_char_set_intersection, scm_char_set_xor): remove
the compulsory cs1 arguments: all args are optional in final spec.
* srfi-14.h: declarations updated.
Diffstat (limited to 'srfi/srfi-14.h')
-rw-r--r-- | srfi/srfi-14.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/srfi/srfi-14.h b/srfi/srfi-14.h index 2621ba22f..02e74f765 100644 --- a/srfi/srfi-14.h +++ b/srfi/srfi-14.h @@ -102,9 +102,9 @@ SCM scm_char_set_adjoin_x (SCM cs, SCM rest); SCM scm_char_set_delete_x (SCM cs, SCM rest); SCM scm_char_set_complement (SCM cs); SCM scm_char_set_union (SCM rest); -SCM scm_char_set_intersection (SCM cs1, SCM rest); +SCM scm_char_set_intersection (SCM rest); SCM scm_char_set_difference (SCM cs1, SCM rest); -SCM scm_char_set_xor (SCM cs1, SCM rest); +SCM scm_char_set_xor (SCM rest); SCM scm_char_set_diff_plus_intersection (SCM cs1, SCM rest); SCM scm_char_set_complement_x (SCM cs); SCM scm_char_set_union_x (SCM cs1, SCM rest); |