guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/examples ChangeLog Makefile.am...


From: Martin Grabmueller
Subject: guile/guile-core/examples ChangeLog Makefile.am...
Date: Tue, 05 Jun 2001 10:33:40 -0700

CVSROOT:        /cvs
Module name:    guile
Changes by:     Martin Grabmueller <address@hidden>     01/06/05 10:33:40

Modified files:
        guile-core/examples: ChangeLog Makefile.am README 
        guile-core/examples/box: box.c 
        guile-core/examples/box-dynamic: box.c 
        guile-core/examples/box-module: box.c 
Added files:
        guile-core/examples/box-dynamic-module: .cvsignore Makefile.am 
                                                README box.c 

Log message:
        * box-dynamic-module: New directory, implements the box type in a
        shared library and places the definitions in a C-only module.
        
        Thanks to Thomas Wawrzinek for this, too!
        
        * box-dynamic/box.c, box/box.c, box-dynamic-module/box.c,
        box-module/box.c (mark_box): Fixed typo in comment.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/ChangeLog.diff?cvsroot=OldCVS&tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/Makefile.am.diff?cvsroot=OldCVS&tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/README.diff?cvsroot=OldCVS&tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box/box.c.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic/box.c.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/.cvsignore?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/Makefile.am?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/README?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-dynamic-module/box.c?cvsroot=OldCVS&rev=1.1
http://savannah.gnu.org/cgi-bin/viewcvs/guile/guile-core/examples/box-module/box.c.diff?cvsroot=OldCVS&tr1=1.1&tr2=1.2&r1=text&r2=text

Patches:
Index: guile/guile-core/examples/ChangeLog
diff -u guile/guile-core/examples/ChangeLog:1.3 
guile/guile-core/examples/ChangeLog:1.4
--- guile/guile-core/examples/ChangeLog:1.3     Fri Jun  1 21:58:24 2001
+++ guile/guile-core/examples/ChangeLog Tue Jun  5 10:33:40 2001
@@ -1,3 +1,13 @@
+2001-06-05  Martin Grabmueller  <address@hidden>
+
+       * box-dynamic-module: New directory, implements the box type in a
+       shared library and places the definitions in a C-only module.
+
+       Thanks to Thomas Wawrzinek for this, too!
+       
+       * box-dynamic/box.c, box/box.c, box-dynamic-module/box.c,
+       box-module/box.c (mark_box): Fixed typo in comment.
+
 2001-06-01  Rob Browning  <address@hidden>
 
        * .cvsignore: here and in all subdirectories listing Makefile and
Index: guile/guile-core/examples/Makefile.am
diff -u guile/guile-core/examples/Makefile.am:1.2 
guile/guile-core/examples/Makefile.am:1.3
--- guile/guile-core/examples/Makefile.am:1.2   Thu May 31 11:24:11 2001
+++ guile/guile-core/examples/Makefile.am       Tue Jun  5 10:33:40 2001
@@ -19,6 +19,7 @@
 ##   to the Free Software Foundation, Inc., 59 Temple Place, Suite
 ##   330, Boston, MA 02111-1307 USA
 
-SUBDIRS = scripts box box-module box-dynamic modules safe
+SUBDIRS = scripts box box-module box-dynamic box-dynamic-module\
+ modules safe
 
 EXTRA_DIST = README
Index: guile/guile-core/examples/README
diff -u guile/guile-core/examples/README:1.2 
guile/guile-core/examples/README:1.3
--- guile/guile-core/examples/README:1.2        Thu May 31 11:24:11 2001
+++ guile/guile-core/examples/README    Tue Jun  5 10:33:40 2001
@@ -5,9 +5,15 @@
 
 See the README files in the subdirectories for details.
 
-scripts     Examples for writing simple scripts in Guile Scheme.
-box        Example for extending Guile with a new data type.
-box-module  Similar to `box', but define new procedures in a named module.
-box-dynamic Implements the box type in a dynamically loadable library.
-modules     Examples for writing and using Guile modules.
-safe        Examples for creating and using safe environments.
+scripts             Examples for writing simple scripts in Guile Scheme.
+box                Example for extending Guile with a new data type.
+box-module         Similar to `box', but defines new procedures in a
+                   named module.
+box-dynamic        Implements the box type in a dynamically loadable
+                   library.
+box-dynamic-module  Combination of `box-module' and `box-dynamic': 
+                   Implements the `box' type in a shared library and
+                   defines the procedures in a Guile module.
+modules                    Examples for writing and using Guile modules.
+safe               Examples for creating and using safe environments.
+
Index: guile/guile-core/examples/box-dynamic/box.c
diff -u guile/guile-core/examples/box-dynamic/box.c:1.1 
guile/guile-core/examples/box-dynamic/box.c:1.2
--- guile/guile-core/examples/box-dynamic/box.c:1.1     Thu May 31 11:24:11 2001
+++ guile/guile-core/examples/box-dynamic/box.c Tue Jun  5 10:33:40 2001
@@ -34,7 +34,7 @@
 mark_box (SCM b)
 {
   /* Since we have only one SCM object to protect, we simply return it
-     and the caller with mark it.  */
+     and the caller will mark it.  */
   return SCM_CELL_OBJECT_1 (b);
 }
 
Index: guile/guile-core/examples/box-module/box.c
diff -u guile/guile-core/examples/box-module/box.c:1.1 
guile/guile-core/examples/box-module/box.c:1.2
--- guile/guile-core/examples/box-module/box.c:1.1      Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/box-module/box.c  Tue Jun  5 10:33:40 2001
@@ -34,7 +34,7 @@
 mark_box (SCM b)
 {
   /* Since we have only one SCM object to protect, we simply return it
-     and the caller with mark it.  */
+     and the caller will mark it.  */
   return SCM_CELL_OBJECT_1 (b);
 }
 
Index: guile/guile-core/examples/box/box.c
diff -u guile/guile-core/examples/box/box.c:1.1 
guile/guile-core/examples/box/box.c:1.2
--- guile/guile-core/examples/box/box.c:1.1     Thu May 31 08:54:25 2001
+++ guile/guile-core/examples/box/box.c Tue Jun  5 10:33:40 2001
@@ -34,7 +34,7 @@
 mark_box (SCM b)
 {
   /* Since we have only one SCM object to protect, we simply return it
-     and the caller with mark it.  */
+     and the caller will mark it.  */
   return SCM_CELL_OBJECT_1 (b);
 }
 



reply via email to

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