guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/examples ChangeLog box/box.c b...


From: Martin Grabmueller
Subject: guile/guile-core/examples ChangeLog box/box.c b...
Date: Mon, 09 Jul 2001 12:14:01 -0700

CVSROOT:        /cvs
Module name:    guile
Branch:         branch_release-1-6
Changes by:     Martin Grabmueller <address@hidden>     01/07/09 12:14:01

Modified files:
        guile-core/examples: ChangeLog 
        guile-core/examples/box: box.c 
        guile-core/examples/box-dynamic: README box.c 
        guile-core/examples/box-dynamic-module: box.c 
        guile-core/examples/box-module: box.c 

Log message:
        * box-dynamic/README: Corrected sample session.
        
        * box-module/box.c, box-dynamic-module/box.c, box-dynamic/box.c
        * box/box.c: scm_bits_t -> scm_t_bits.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/ChangeLog.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.7&tr2=1.7.2.1&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box/box.c.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.2&tr2=1.2.2.1&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic/README.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.2&tr2=1.2.2.1&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic/box.c.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.2&tr2=1.2.2.1&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/box.c.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.3&tr2=1.3.2.1&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-module/box.c.diff?cvsroot=OldCVS&only_with_tag=branch_release-1-6&tr1=1.2&tr2=1.2.2.1&r1=text&r2=text

Patches:
Index: guile/guile-core/examples/ChangeLog
diff -u guile/guile-core/examples/ChangeLog:1.7 
guile/guile-core/examples/ChangeLog:1.8
--- guile/guile-core/examples/ChangeLog:1.7     Mon Jun 18 12:09:31 2001
+++ guile/guile-core/examples/ChangeLog Mon Jul  9 12:13:21 2001
@@ -1,3 +1,10 @@
+2001-07-09  Martin Grabmueller  <address@hidden>
+
+       * box-dynamic/README: Corrected sample session.
+
+       * box-module/box.c, box-dynamic-module/box.c, box-dynamic/box.c
+       * box/box.c: scm_bits_t -> scm_t_bits.
+
 2001-06-18  Martin Grabmueller  <address@hidden>
 
        * box-dynamic-module/README: Use a better example for box-map, as
Index: guile/guile-core/examples/box-dynamic-module/box.c
diff -u guile/guile-core/examples/box-dynamic-module/box.c:1.3 
guile/guile-core/examples/box-dynamic-module/box.c:1.4
--- guile/guile-core/examples/box-dynamic-module/box.c:1.3      Thu Jun 14 
13:36:05 2001
+++ guile/guile-core/examples/box-dynamic-module/box.c  Mon Jul  9 12:13:21 2001
@@ -25,7 +25,7 @@
 /* The type code for the newly created smob type will be stored into
    this variable.  It has the prefix `scm_tc16_' to make it usable
    with the SCM_VALIDATE_SMOB macro below.  */
-static scm_bits_t scm_tc16_box;
+static scm_t_bits scm_tc16_box;
 
 
 /* This function is responsible for marking all SCM objects included
Index: guile/guile-core/examples/box-dynamic/README
diff -u guile/guile-core/examples/box-dynamic/README:1.2 
guile/guile-core/examples/box-dynamic/README:1.3
--- guile/guile-core/examples/box-dynamic/README:1.2    Thu Jun 14 13:36:05 2001
+++ guile/guile-core/examples/box-dynamic/README        Mon Jul  9 12:13:21 2001
@@ -37,7 +37,7 @@
 
 ** Example Session
 
-$ ./guile
+$ guile
 guile> (load-extension "libbox" "scm_init_box")
 guile> (define b (make-box))
 guile> b
Index: guile/guile-core/examples/box-dynamic/box.c
diff -u guile/guile-core/examples/box-dynamic/box.c:1.2 
guile/guile-core/examples/box-dynamic/box.c:1.3
--- guile/guile-core/examples/box-dynamic/box.c:1.2     Tue Jun  5 10:33:40 2001
+++ guile/guile-core/examples/box-dynamic/box.c Mon Jul  9 12:13:21 2001
@@ -25,7 +25,7 @@
 /* The type code for the newly created smob type will be stored into
    this variable.  It has the prefix `scm_tc16_' to make it usable
    with the SCM_VALIDATE_SMOB macro below.  */
-static scm_bits_t scm_tc16_box;
+static scm_t_bits scm_tc16_box;
 
 
 /* This function is responsible for marking all SCM objects included
Index: guile/guile-core/examples/box-module/box.c
diff -u guile/guile-core/examples/box-module/box.c:1.2 
guile/guile-core/examples/box-module/box.c:1.3
--- guile/guile-core/examples/box-module/box.c:1.2      Tue Jun  5 10:33:40 2001
+++ guile/guile-core/examples/box-module/box.c  Mon Jul  9 12:13:21 2001
@@ -25,7 +25,7 @@
 /* The type code for the newly created smob type will be stored into
    this variable.  It has the prefix `scm_tc16_' to make it usable
    with the SCM_VALIDATE_SMOB macro below.  */
-static scm_bits_t scm_tc16_box;
+static scm_t_bits scm_tc16_box;
 
 
 /* This function is responsible for marking all SCM objects included
Index: guile/guile-core/examples/box/box.c
diff -u guile/guile-core/examples/box/box.c:1.2 
guile/guile-core/examples/box/box.c:1.3
--- guile/guile-core/examples/box/box.c:1.2     Tue Jun  5 10:33:40 2001
+++ guile/guile-core/examples/box/box.c Mon Jul  9 12:13:21 2001
@@ -25,7 +25,7 @@
 /* The type code for the newly created smob type will be stored into
    this variable.  It has the prefix `scm_tc16_' to make it usable
    with the SCM_VALIDATE_SMOB macro below.  */
-static scm_bits_t scm_tc16_box;
+static scm_t_bits scm_tc16_box;
 
 
 /* This function is responsible for marking all SCM objects included



reply via email to

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