mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
*.[ch]: Replace GUILE_PROC w/ SCM_DEFINE.
This commit is contained in:
parent
fb76446506
commit
a1ec69163d
63 changed files with 582 additions and 582 deletions
|
@ -359,7 +359,7 @@ scm_call_generic_3 (SCM gf, SCM a1, SCM a2, SCM a3)
|
|||
return scm_apply_generic (gf, SCM_LIST3 (a1, a2, a3));
|
||||
}
|
||||
|
||||
GUILE_PROC (scm_entity_p, "entity?", 1, 0, 0,
|
||||
SCM_DEFINE (scm_entity_p, "entity?", 1, 0, 0,
|
||||
(SCM obj),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_entity_p
|
||||
|
@ -368,7 +368,7 @@ GUILE_PROC (scm_entity_p, "entity?", 1, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
GUILE_PROC (scm_operator_p, "operator?", 1, 0, 0,
|
||||
SCM_DEFINE (scm_operator_p, "operator?", 1, 0, 0,
|
||||
(SCM obj),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_operator_p
|
||||
|
@ -379,7 +379,7 @@ GUILE_PROC (scm_operator_p, "operator?", 1, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
GUILE_PROC (scm_set_object_procedure_x, "set-object-procedure!", 2, 0, 0,
|
||||
SCM_DEFINE (scm_set_object_procedure_x, "set-object-procedure!", 2, 0, 0,
|
||||
(SCM obj, SCM proc),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_set_object_procedure_x
|
||||
|
@ -402,7 +402,7 @@ GUILE_PROC (scm_set_object_procedure_x, "set-object-procedure!", 2, 0, 0,
|
|||
#undef FUNC_NAME
|
||||
|
||||
#ifdef GUILE_DEBUG
|
||||
GUILE_PROC (scm_object_procedure, "object-procedure", 1, 0, 0,
|
||||
SCM_DEFINE (scm_object_procedure, "object-procedure", 1, 0, 0,
|
||||
(SCM obj),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_object_procedure
|
||||
|
@ -437,7 +437,7 @@ scm_i_make_class_object (SCM meta,
|
|||
return c;
|
||||
}
|
||||
|
||||
GUILE_PROC (scm_make_class_object, "make-class-object", 2, 0, 0,
|
||||
SCM_DEFINE (scm_make_class_object, "make-class-object", 2, 0, 0,
|
||||
(SCM metaclass, SCM layout),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_make_class_object
|
||||
|
@ -451,7 +451,7 @@ GUILE_PROC (scm_make_class_object, "make-class-object", 2, 0, 0,
|
|||
}
|
||||
#undef FUNC_NAME
|
||||
|
||||
GUILE_PROC (scm_make_subclass_object, "make-subclass-object", 2, 0, 0,
|
||||
SCM_DEFINE (scm_make_subclass_object, "make-subclass-object", 2, 0, 0,
|
||||
(SCM class, SCM layout),
|
||||
"")
|
||||
#define FUNC_NAME s_scm_make_subclass_object
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue