1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 17:20:29 +02:00

* 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.
This commit is contained in:
Martin Grabmüller 2001-07-09 19:14:01 +00:00
parent d9fc89cb3f
commit 5785e11401
6 changed files with 12 additions and 5 deletions

View file

@ -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> 2001-06-18 Martin Grabmueller <mgrabmue@cs.tu-berlin.de>
* box-dynamic-module/README: Use a better example for box-map, as * box-dynamic-module/README: Use a better example for box-map, as

View file

@ -25,7 +25,7 @@
/* The type code for the newly created smob type will be stored into /* 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 this variable. It has the prefix `scm_tc16_' to make it usable
with the SCM_VALIDATE_SMOB macro below. */ 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 /* This function is responsible for marking all SCM objects included

View file

@ -37,7 +37,7 @@ Extend your LD_LIBRARY_PATH variable (or equivalent) to include . and
** Example Session ** Example Session
$ ./guile $ guile
guile> (load-extension "libbox" "scm_init_box") guile> (load-extension "libbox" "scm_init_box")
guile> (define b (make-box)) guile> (define b (make-box))
guile> b guile> b

View file

@ -25,7 +25,7 @@
/* The type code for the newly created smob type will be stored into /* 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 this variable. It has the prefix `scm_tc16_' to make it usable
with the SCM_VALIDATE_SMOB macro below. */ 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 /* This function is responsible for marking all SCM objects included

View file

@ -25,7 +25,7 @@
/* The type code for the newly created smob type will be stored into /* 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 this variable. It has the prefix `scm_tc16_' to make it usable
with the SCM_VALIDATE_SMOB macro below. */ 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 /* This function is responsible for marking all SCM objects included

View file

@ -25,7 +25,7 @@
/* The type code for the newly created smob type will be stored into /* 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 this variable. It has the prefix `scm_tc16_' to make it usable
with the SCM_VALIDATE_SMOB macro below. */ 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 /* This function is responsible for marking all SCM objects included