mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-21 04:00:19 +02:00
* Return type of scm_make_smob_type is scm_bits_t now.
This commit is contained in:
parent
322ec19d3c
commit
8a39e3fc79
4 changed files with 8 additions and 2 deletions
1
THANKS
1
THANKS
|
@ -25,6 +25,7 @@ For fixes or providing information which led to a fix:
|
||||||
Han-Wen Nienhuys
|
Han-Wen Nienhuys
|
||||||
David Pirotte
|
David Pirotte
|
||||||
Julian Satchell
|
Julian Satchell
|
||||||
|
Bill Schottstaedt
|
||||||
Dale P. Smith
|
Dale P. Smith
|
||||||
Jacques A. Vidrine.
|
Jacques A. Vidrine.
|
||||||
William Webber
|
William Webber
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2001-01-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
|
||||||
|
|
||||||
|
* smob.[ch] (scm_make_smob_type): Return type is scm_bits_t now.
|
||||||
|
Thanks to Bill Schottstaedt.
|
||||||
|
|
||||||
2001-01-11 Michael Livshin <mlivshin@bigfoot.com>
|
2001-01-11 Michael Livshin <mlivshin@bigfoot.com>
|
||||||
|
|
||||||
from Matthias Köppe:
|
from Matthias Köppe:
|
||||||
|
|
|
@ -275,7 +275,7 @@ scm_smob_apply_3_error (SCM smob, SCM a1, SCM a2, SCM rst)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
long
|
scm_bits_t
|
||||||
scm_make_smob_type (char *name, scm_sizet size)
|
scm_make_smob_type (char *name, scm_sizet size)
|
||||||
{
|
{
|
||||||
char *tmp;
|
char *tmp;
|
||||||
|
|
|
@ -143,7 +143,7 @@ extern int scm_smob_print (SCM exp, SCM port, scm_print_state *pstate);
|
||||||
* values using `scm_set_smob_xxx'.
|
* values using `scm_set_smob_xxx'.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
extern long scm_make_smob_type (char *name, scm_sizet size);
|
extern scm_bits_t scm_make_smob_type (char *name, scm_sizet size);
|
||||||
|
|
||||||
extern void scm_set_smob_mark (long tc, SCM (*mark) (SCM));
|
extern void scm_set_smob_mark (long tc, SCM (*mark) (SCM));
|
||||||
extern void scm_set_smob_free (long tc, scm_sizet (*free) (SCM));
|
extern void scm_set_smob_free (long tc, scm_sizet (*free) (SCM));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue