From ce71f796b6939cd0bb63f60bedca3c969433384b Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Wed, 8 Jan 1997 01:51:14 +0000 Subject: [PATCH] * ports.h (SCM_PTOBNUM): Removed extraneous semicolon. * smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a duplicate. --- libguile/ports.h | 2 +- libguile/smob.h | 1 - 2 files changed, 1 insertion(+), 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;