diff options
author | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 20:14:09 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2001-06-14 20:14:09 +0000 |
commit | 1385d8aee3436a7166baeb7b5cc7ce27762561fd (patch) | |
tree | d52e3a776a53e7b5675c0ca44c27ea41629e71dd /libguile/lang.h | |
parent | b629af45cba2b34fee0ad078581d231df1e1b86c (diff) | |
download | guile-1385d8aee3436a7166baeb7b5cc7ce27762561fd.tar.gz |
Replace "scm_*_t" with "scm_t_*", except "scm_lisp_t".
Diffstat (limited to 'libguile/lang.h')
-rw-r--r-- | libguile/lang.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/lang.h b/libguile/lang.h index dfae81970..f0514d0c6 100644 --- a/libguile/lang.h +++ b/libguile/lang.h @@ -49,7 +49,7 @@ 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)) |