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

* objects.h: Don't redeclare scm_call_generic_0 and

scm_apply_generic.  (Thanks to Tal Tversky.)
This commit is contained in:
Mikael Djurfeldt 2000-04-10 20:37:48 +00:00
parent abfadf764a
commit 1cf49a85c9
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2000-04-10 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* objects.h: Don't redeclare scm_call_generic_0 and
scm_apply_generic. (Thanks to Tal Tversky.)
2000-04-10 Dirk Herrmann <D.Herrmann@tu-bs.de>
* hash.c (scm_hasher): Use symbolic names for the tc3 constants.

View file

@ -219,13 +219,13 @@ extern SCM (*scm_memoize_method) (SCM x, SCM args);
extern SCM scm_class_of (SCM obj);
extern SCM scm_mcache_lookup_cmethod (SCM cache, SCM args);
extern SCM scm_mcache_compute_cmethod (SCM cache, SCM args);
extern SCM scm_call_generic_0 (SCM gf);
/* The following are declared in __scm.h
extern SCM scm_call_generic_0 (SCM gf);
extern SCM scm_call_generic_1 (SCM gf, SCM a1);
extern SCM scm_call_generic_2 (SCM gf, SCM a1, SCM a2);
extern SCM scm_apply_generic (SCM gf, SCM args);
*/
extern SCM scm_call_generic_3 (SCM gf, SCM a1, SCM a2, SCM a3);
extern SCM scm_apply_generic (SCM gf, SCM args);
extern SCM scm_entity_p (SCM obj);
extern SCM scm_operator_p (SCM obj);
extern SCM scm_set_object_procedure_x (SCM obj, SCM procs);