diff options
author | Han-Wen Nienhuys <hanwen@lilypond.org> | 2004-03-28 13:55:03 +0000 |
---|---|---|
committer | Han-Wen Nienhuys <hanwen@lilypond.org> | 2004-03-28 13:55:03 +0000 |
commit | 702551e6cc41e90745ca5f8626956ecab46c41c9 (patch) | |
tree | 235ad8bc5db51683904a1dd730ea3857c0ffaa95 /libguile/gc-mark.c | |
parent | 88a7ae1f6818b68bc72a4bb8763b3299c69c4988 (diff) | |
download | guile-702551e6cc41e90745ca5f8626956ecab46c41c9.tar.gz |
* gc.h (SCM_GC_CELL_TYPE): SCM_GC_CELL_TYPE uses SCM_GC_CELL_OBJECT.
* goops.h (SCM_NUMBER_OF_SLOTS): don't SCM_UNPACK the result.
* backtrace.c ("display_backtrace_body"): SCM_PACK before SCM_EQ_P
(display_frame): idem.
(display_backtrace_file_and_line): idem.
* tags.h (SCM_UNPACK): stricter typechecking on SCM_UNPACK
arguments.
Diffstat (limited to 'libguile/gc-mark.c')
-rw-r--r-- | libguile/gc-mark.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/gc-mark.c b/libguile/gc-mark.c index 10f1522e0..456cb37b0 100644 --- a/libguile/gc-mark.c +++ b/libguile/gc-mark.c @@ -166,7 +166,7 @@ scm_gc_mark_dependencies (SCM p) { register long i; register SCM ptr; - scm_t_bits cell_type; + SCM cell_type; ptr = p; scm_mark_dependencies_again: |