mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +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:
parent
ee85583a37
commit
9bf806445c
6 changed files with 12 additions and 5 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue