* ports.h (SCM_PTOBNUM): Removed extraneous semicolon.
authorJim Blandy <jimb@red-bean.com>
Wed, 8 Jan 1997 01:51:14 +0000 (01:51 +0000)
committerJim Blandy <jimb@red-bean.com>
Wed, 8 Jan 1997 01:51:14 +0000 (01:51 +0000)
* smob.h: (SCM_PTOBNUM): Removed entirely; this definition is a
duplicate.

libguile/ports.h
libguile/smob.h

index 55875b1..9022dd2 100644 (file)
@@ -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))
 
 \f
 
index efba996..b009920 100644 (file)
@@ -57,7 +57,6 @@ typedef struct scm_smobfuns
 \f
 
 #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;