summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-07-09 19:13:21 +0000
committerMartin Grabmüller <mgrabmue@cs.tu-berlin.de>2001-07-09 19:13:21 +0000
commit9bf806445c03bd0476fa8050d95954104805cb16 (patch)
treedfdabf6643c30ade3035eece0371456cb6676681 /examples
parentee85583a3755cd445a58ed0c250c36e8e0cbafb2 (diff)
downloadguile-9bf806445c03bd0476fa8050d95954104805cb16.tar.gz
* 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.
Diffstat (limited to 'examples')
-rw-r--r--examples/ChangeLog7
-rw-r--r--examples/box-dynamic-module/box.c2
-rw-r--r--examples/box-dynamic/README2
-rw-r--r--examples/box-dynamic/box.c2
-rw-r--r--examples/box-module/box.c2
-rw-r--r--examples/box/box.c2
6 files changed, 12 insertions, 5 deletions
diff --git a/examples/ChangeLog b/examples/ChangeLog
index 678830aa8..e907b87b5 100644
--- a/examples/ChangeLog
+++ b/examples/ChangeLog
@@ -1,3 +1,10 @@
+2001-07-09 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
+
+ * 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 <mgrabmue@cs.tu-berlin.de>
* box-dynamic-module/README: Use a better example for box-map, as
diff --git a/examples/box-dynamic-module/box.c b/examples/box-dynamic-module/box.c
index c159a8f82..180190e9e 100644
--- a/examples/box-dynamic-module/box.c
+++ b/examples/box-dynamic-module/box.c
@@ -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
diff --git a/examples/box-dynamic/README b/examples/box-dynamic/README
index bb87b5db7..7acc9f432 100644
--- a/examples/box-dynamic/README
+++ b/examples/box-dynamic/README
@@ -37,7 +37,7 @@ Extend your LD_LIBRARY_PATH variable (or equivalent) to include . and
** Example Session
-$ ./guile
+$ guile
guile> (load-extension "libbox" "scm_init_box")
guile> (define b (make-box))
guile> b
diff --git a/examples/box-dynamic/box.c b/examples/box-dynamic/box.c
index 8872a6163..9379b86a5 100644
--- a/examples/box-dynamic/box.c
+++ b/examples/box-dynamic/box.c
@@ -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
diff --git a/examples/box-module/box.c b/examples/box-module/box.c
index cf6542593..90f6881dd 100644
--- a/examples/box-module/box.c
+++ b/examples/box-module/box.c
@@ -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
diff --git a/examples/box/box.c b/examples/box/box.c
index 6c972b86b..e526fa880 100644
--- a/examples/box/box.c
+++ b/examples/box/box.c
@@ -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