diff --git a/libguile/ChangeLog b/libguile/ChangeLog index b0a3ae171..be24ff63f 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,8 @@ +2001-05-09 Martin Grabmueller + + * procs.c: Increased `scm_subr_table_room' to 800 because Guile now + has 779 primitives on startup. + 2001-05-09 Marius Vollmer * eval.c (scm_i_eval): Copy expression before passing it to diff --git a/libguile/procs.c b/libguile/procs.c index 77cd3b9b2..e9ba44f08 100644 --- a/libguile/procs.c +++ b/libguile/procs.c @@ -63,8 +63,11 @@ scm_subr_entry *scm_subr_table; /* libguile contained approx. 700 primitive procedures on 24 Aug 1999. */ +/* Increased to 800 on 2001-05-07 -- Guile now has 779 primitives on + startup, 786 with guile-readline. 'martin */ + int scm_subr_table_size = 0; -int scm_subr_table_room = 750; +int scm_subr_table_room = 800; SCM scm_make_subr_opt (const char *name, int type, SCM (*fcn) (), int set)