diff options
author | Jim Blandy <jimb@red-bean.com> | 1997-01-08 01:51:14 +0000 |
---|---|---|
committer | Jim Blandy <jimb@red-bean.com> | 1997-01-08 01:51:14 +0000 |
commit | ce71f796b6939cd0bb63f60bedca3c969433384b (patch) | |
tree | b2f6db944f61af834a12f2b90bd69710bf45d7de /libguile | |
parent | 198befde139830d44e6b6cecadf23fff26af2b80 (diff) | |
download | guile-ce71f796b6939cd0bb63f60bedca3c969433384b.tar.gz |
* ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
* smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a
duplicate.
Diffstat (limited to 'libguile')
-rw-r--r-- | libguile/ports.h | 2 | ||||
-rw-r--r-- | libguile/smob.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/libguile/ports.h b/libguile/ports.h index 55875b197..9022dd209 100644 --- a/libguile/ports.h +++ b/libguile/ports.h @@ -150,7 +150,7 @@ typedef struct scm_ptobfuns int (*fclose) SCM_P ((SCM stream)); } scm_ptobfuns; -#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8)); +#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8)) diff --git a/libguile/smob.h b/libguile/smob.h index efba996b8..b009920ce 100644 --- a/libguile/smob.h +++ b/libguile/smob.h @@ -57,7 +57,6 @@ typedef struct scm_smobfuns #define SCM_SMOBNUM(x) (0x0ff & (SCM_CAR(x)>>8)) -#define SCM_PTOBNUM(x) (0x0ff & (SCM_CAR(x)>>8)) extern scm_sizet scm_numsmob; extern scm_smobfuns *scm_smobs; |