(SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK):
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 12 May 2003 16:29:45 +0000 (16:29 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Mon, 12 May 2003 16:29:45 +0000 (16:29 +0000)
Use current names in definitions.

libguile/ChangeLog
libguile/deprecated.h

index f904b68..f1e675d 100644 (file)
@@ -1,3 +1,8 @@
+2003-05-12  Mikael Djurfeldt  <djurfeldt@nada.kth.se>
+
+       * deprecated.h (SCM_GC8MARKP, SCM_SETGC8MARK, SCM_CLRGC8MARK):
+       Use current names in definitions.
+
 2003-05-10  Kevin Ryde  <user42@zip.com.au>
 
        * numbers.c (scm_num_eq_p, scm_less_p): Don't pass NaN to mpz_cmp_d.
index 11811f0..1f00e7a 100644 (file)
@@ -58,9 +58,9 @@ SCM_API SCM scm_unprotect_object (SCM obj);
   (SCM_SETCDR ((x), SCM_PACK (SCM_UNPACK (SCM_CDR (x)) | (y))))
 #define SCM_FREEP(x) (SCM_FREE_CELL_P (x))
 #define SCM_NFREEP(x) (!SCM_FREE_CELL_P (x))
-#define SCM_GC8MARKP(x) SCM_GCMARKP (x)
-#define SCM_SETGC8MARK(x) SCM_SETGCMARK (x)
-#define SCM_CLRGC8MARK(x) SCM_CLRGCMARK (x)
+#define SCM_GC8MARKP(x) SCM_GC_MARK_P (x)
+#define SCM_SETGC8MARK(x) SCM_SET_GC_MARK (x)
+#define SCM_CLRGC8MARK(x) SCM_CLEAR_GC_MARK (x)
 #define SCM_GCTYP16(x) SCM_TYP16 (x)
 #define SCM_GCCDR(x) SCM_CDR (x)
 SCM_API void scm_remember (SCM * ptr);