guile-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

guile/guile-core/libguile ChangeLog procs.c


From: Martin Grabmueller
Subject: guile/guile-core/libguile ChangeLog procs.c
Date: Wed, 09 May 2001 14:50:43 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/05/09 14:50:43

Modified files:
        guile-core/libguile: ChangeLog procs.c 

Log message:
        * procs.c: Increased `scm_subr_table_room' to 800 because Guile now
        has 779 primitives on startup.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/ChangeLog.diff?cvsroot=OldCVS&tr1=1.1386&tr2=1.1387&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/libguile/procs.c.diff?cvsroot=OldCVS&tr1=1.53&tr2=1.54&r1=text&r2=text

Patches:
Index: guile/guile-core/libguile/ChangeLog
diff -u guile/guile-core/libguile/ChangeLog:1.1386 
guile/guile-core/libguile/ChangeLog:1.1387
--- guile/guile-core/libguile/ChangeLog:1.1386  Wed May  9 13:26:19 2001
+++ guile/guile-core/libguile/ChangeLog Wed May  9 14:50:43 2001
@@ -1,3 +1,8 @@
+2001-05-09  Martin Grabmueller  <address@hidden>
+
+       * procs.c: Increased `scm_subr_table_room' to 800 because Guile now
+       has 779 primitives on startup.
+
 2001-05-09  Marius Vollmer  <address@hidden>
 
        * eval.c (scm_i_eval): Copy expression before passing it to
Index: guile/guile-core/libguile/procs.c
diff -u guile/guile-core/libguile/procs.c:1.53 
guile/guile-core/libguile/procs.c:1.54
--- guile/guile-core/libguile/procs.c:1.53      Thu Apr 19 07:46:01 2001
+++ guile/guile-core/libguile/procs.c   Wed May  9 14:50:43 2001
@@ -63,8 +63,11 @@
 
 /* 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)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]