* lang.h: fix various preprocessor usages of new public
authorRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:09:08 +0000 (20:09 +0000)
committerRob Browning <rlb@defaultvalue.org>
Thu, 27 Mar 2003 20:09:08 +0000 (20:09 +0000)
symbols to expect 0 or 1 values rather than 1 or undefined.
i.e. change #ifdef to #if, etc.

libguile/lang.h

index 07585bc..e9d965e 100644 (file)
@@ -50,7 +50,7 @@
 
 \f
 
-#ifdef SCM_ENABLE_ELISP
+#if SCM_ENABLE_ELISP
 
 #define SCM_NILP(x) (SCM_EQ_P ((x), SCM_ELISP_NIL))