diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 17:52:18 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-03-12 17:52:18 +0000 |
commit | 4d45e7b69aaa0529653963df75e16b31fbada8eb (patch) | |
tree | 12f026438d1b3375a9f97415a184a33dbaa5e822 /libguile/unif.c | |
parent | 0bc908e7c448940099612b3bd1d10356652241ee (diff) | |
download | guile-4d45e7b69aaa0529653963df75e16b31fbada8eb.tar.gz |
* stacks.c, stacks.h, struct.c, tags.h, unif.c (scm_bits_t):
Renamed from SCMWORD.
Diffstat (limited to 'libguile/unif.c')
-rw-r--r-- | libguile/unif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/unif.c b/libguile/unif.c index 5fcefe6e3..cf2172a79 100644 --- a/libguile/unif.c +++ b/libguile/unif.c @@ -2466,7 +2466,7 @@ tail: scm_putc ('*', port); for (i = 0; i < (SCM_LENGTH (exp)) / SCM_LONG_BIT; i++) { - SCMWORD w = SCM_BITS (SCM_VELTS (exp)[i]); + scm_bits_t w = SCM_BITS (SCM_VELTS (exp)[i]); for (j = SCM_LONG_BIT; j; j--) { scm_putc (w & 1 ? '1' : '0', port); |