diff options
author | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-12-23 11:38:06 +0000 |
---|---|---|
committer | Dirk Herrmann <dirk@dirk-herrmanns-seiten.de> | 2000-12-23 11:38:06 +0000 |
commit | 54a33a61d92d8fa667a609dc6e3f50069320e790 (patch) | |
tree | ab3015c6e14ff319c407891d8aa0960700c484fb /libguile/procs.c | |
parent | c9c01b11259a4b7cd8e5143241ce12f57282976a (diff) | |
download | guile-54a33a61d92d8fa667a609dc6e3f50069320e790.tar.gz |
* Removed unused member "properties" from struct scm_subr_entry.
Diffstat (limited to 'libguile/procs.c')
-rw-r--r-- | libguile/procs.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libguile/procs.c b/libguile/procs.c index d1279a21a..a79c7d79c 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -102,7 +102,6 @@ scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set) scm_subr_table[entry].handle = z; scm_subr_table[entry].name = symbol; scm_subr_table[entry].generic = 0; - scm_subr_table[entry].properties = SCM_EOL; SCM_SET_SUBRF (z, fcn); SCM_SET_CELL_TYPE (z, (entry << 8) + type); @@ -149,8 +148,6 @@ scm_mark_subr_table () SCM_SETGCMARK (scm_subr_table[i].name); if (scm_subr_table[i].generic && *scm_subr_table[i].generic) scm_gc_mark (*scm_subr_table[i].generic); - if (SCM_NIMP (scm_subr_table[i].properties)) - scm_gc_mark (scm_subr_table[i].properties); } } |