diff options
author | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-05-09 21:50:43 +0000 |
---|---|---|
committer | Martin Grabmüller <mgrabmue@cs.tu-berlin.de> | 2001-05-09 21:50:43 +0000 |
commit | 7c582ec9b5ffe22256c11043b4cb370297db293c (patch) | |
tree | a13f91cf83f719e07c3c76e73c4e9e64216cae4a | |
parent | 284ab60172b49efb4960395865bbbafd17777e5b (diff) | |
download | guile-7c582ec9b5ffe22256c11043b4cb370297db293c.tar.gz |
* procs.c: Increased `scm_subr_table_room' to 800 because Guile now
has 779 primitives on startup.
-rw-r--r-- | libguile/ChangeLog | 5 | ||||
-rw-r--r-- | libguile/procs.c | 5 |
2 files changed, 9 insertions, 1 deletions
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 <mgrabmue@cs.tu-berlin.de> + + * procs.c: Increased `scm_subr_table_room' to 800 because Guile now + has 779 primitives on startup. + 2001-05-09 Marius Vollmer <mvo@zagadka.ping.de> * 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) |