Replace "scm_*_t" with "scm_t_*", except "scm_lisp_t".
authorMarius Vollmer <mvo@zagadka.de>
Thu, 14 Jun 2001 20:14:09 +0000 (20:14 +0000)
committerMarius Vollmer <mvo@zagadka.de>
Thu, 14 Jun 2001 20:14:09 +0000 (20:14 +0000)
libguile/eval.c
libguile/lang.c
libguile/lang.h

index fec45ac..dad5aef 100644 (file)
@@ -1044,7 +1044,7 @@ scm_m_cont (SCM xorig, SCM env SCM_UNUSED)
 /* Multi-language support */
 
 SCM_GLOBAL_SYMBOL (scm_lisp_nil, "nil");
-SCM_GLOBAL_SYMBOL (scm_t_lisp, "t");
+SCM_GLOBAL_SYMBOL (scm_lisp_t, "t");
 
 SCM_SYNTAX (s_nil_cond, "nil-cond", scm_makmmacro, scm_m_nil_cond);
 
@@ -2419,7 +2419,7 @@ dispatch:
            
        case (SCM_ISYMNUM (SCM_IM_T_IFY)):
          x = SCM_CDR (x);
-         RETURN (SCM_NFALSEP (EVALCAR (x, env)) ? scm_t_lisp : scm_lisp_nil)
+         RETURN (SCM_NFALSEP (EVALCAR (x, env)) ? scm_lisp_t : scm_lisp_nil)
            
        case (SCM_ISYMNUM (SCM_IM_0_COND)):
          proc = SCM_CDR (x);
@@ -4125,7 +4125,7 @@ scm_init_eval ()
 #endif
 
   scm_c_define ("nil", scm_lisp_nil);
-  scm_c_define ("t", scm_t_lisp);
+  scm_c_define ("t", scm_lisp_t);
   
   scm_add_feature ("delay");
 }
index ee15c66..82378e0 100644 (file)
@@ -114,7 +114,7 @@ SCM_DEFINE (scm_null, "null", 1, 0, 0,
            "return LISP's nil otherwise.")
 #define FUNC_NAME s_scm_null
 {
-  return (SCM_NILP (x) || SCM_NULLP (x) || SCM_FALSEP (x)) ? scm_t_lisp : scm_lisp_nil;
+  return (SCM_NILP (x) || SCM_NULLP (x) || SCM_FALSEP (x)) ? scm_lisp_t : scm_lisp_nil;
 }
 #undef FUNC_NAME
 
@@ -146,7 +146,7 @@ SCM_DEFINE1 (scm_nil_eq, "nil-eq", scm_tc7_rpsubr,
   return ((SCM_EQ_P (x, y)
           || (SCM_NILP (x) && (SCM_NULLP (y) || SCM_FALSEP (y)))
           || (SCM_NILP (y) && (SCM_NULLP (x) || SCM_FALSEP (x))))
-         ? scm_t_lisp
+         ? scm_lisp_t
          : scm_lisp_nil);
 }
 #undef FUNC_NAME
index dfae819..f0514d0 100644 (file)
@@ -49,7 +49,7 @@
 \f
 
 extern SCM scm_lisp_nil;
-extern SCM scm_t_lisp;
+extern SCM scm_lisp_t;
 
 #define SCM_NILP(x) (SCM_EQ_P ((x), scm_lisp_nil))
 #define SCM_NILNULLP(x) (SCM_NILP (x) || SCM_NULLP (x))