* dynwind.c (scm_swap_bindings): Ditto.
[bpt/guile.git] / libguile / keywords.h
index 3bac1bb..0eda0e8 100644 (file)
@@ -52,7 +52,7 @@
 \f
 
 extern int scm_tc16_keyword;
-#define SCM_KEYWORDP(X)                (SCM_NIMP(X) && (SCM_CAR(X) == scm_tc16_keyword))
+#define SCM_KEYWORDP(X)                (SCM_NIMP(X) && (SCM_UNPACK_CAR (X) == scm_tc16_keyword))
 #define SCM_KEYWORDSYM(X)      (SCM_CDR(X))
 
 \f
@@ -65,3 +65,9 @@ extern SCM scm_keyword_dash_symbol (SCM keyword);
 extern void scm_init_keywords (void);
 
 #endif  /* KEYWORDSH */
+
+/*
+  Local Variables:
+  c-file-style: "gnu"
+  End:
+*/