1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-16 00:30:21 +02:00

* 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.
This commit is contained in:
Gary Houston 2001-07-22 20:19:12 +00:00
parent b8a42df3f1
commit a6ec2a3cef
3 changed files with 56 additions and 30 deletions

View file

@ -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);