1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

* procprop.c, procprop.h (scm_sym_system_procedure): New symbol.

* eval.c, procs.c, procs.h, procprop.c: Renamed getter ->
procedure throughout.
This commit is contained in:
Mikael Djurfeldt 1999-03-12 08:17:50 +00:00
parent 7c6e9dae27
commit c083a5295b
2 changed files with 2 additions and 0 deletions

View file

@ -52,6 +52,7 @@
#include "procprop.h" #include "procprop.h"
SCM_GLOBAL_SYMBOL (scm_sym_system_procedure, "system-procedure");
SCM_GLOBAL_SYMBOL (scm_sym_arity, "arity"); SCM_GLOBAL_SYMBOL (scm_sym_arity, "arity");
SCM SCM

View file

@ -51,6 +51,7 @@
extern SCM scm_i_name; extern SCM scm_i_name;
extern SCM scm_i_inner_name; extern SCM scm_i_inner_name;
extern SCM scm_sym_arity; extern SCM scm_sym_arity;
extern SCM scm_sym_system_procedure;