diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-13 13:31:50 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 1996-09-13 13:31:50 +0000 |
commit | 08b5b88cdffc22a0a25ee5c8597de4fcc47fff58 (patch) | |
tree | 08a342ebc55d9c8f3e3321485e0e6b61699e8885 /libguile/variable.h | |
parent | e2806c1000054f765c46bd14f8fb64a4d74d4eea (diff) | |
download | guile-08b5b88cdffc22a0a25ee5c8597de4fcc47fff58.tar.gz |
* __scm.h, chars.c, debug.c, eval.c, eval.h, extchrs.c, extchrs.h,
fdsocket.c, feature.c, mbstrings.c, mbstrings.h, numbers.c,
numbers.h, print.c, scmhob.h, simpos.h, symbols.c, symbols.h,
tags.h, throw.c, variable.h: Name cleanup. Lots of xxxSCM_yyy
removed. (These were introduced by unsupervised name
substitution.)
Diffstat (limited to 'libguile/variable.h')
-rw-r--r-- | libguile/variable.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/variable.h b/libguile/variable.h index 9b426bc4e..8de09879a 100644 --- a/libguile/variable.h +++ b/libguile/variable.h @@ -54,8 +54,8 @@ extern int scm_tc16_variable; #define SCM_VARVCELL(V) SCM_CDR(V) #define SCM_VARIABLEP(X) (scm_tc16_variable == SCM_CAR(X)) -#define SCM_UDSCM_VARIABLEP(X) (SCM_VARIABLEP(X) && SCM_UNBNDP (SCM_CDR (SCM_VARVCELL (X)))) -#define SCM_DEFSCM_VARIABLEP(X) (SCM_VARIABLEP(X) && !SCM_UNBNDP (SCM_CDR (SCM_VARVCELL (X)))) +#define SCM_UDVARIABLEP(X) (SCM_VARIABLEP(X) && SCM_UNBNDP (SCM_CDR (SCM_VARVCELL (X)))) +#define SCM_DEFVARIABLEP(X) (SCM_VARIABLEP(X) && !SCM_UNBNDP (SCM_CDR (SCM_VARVCELL (X)))) #ifdef __STDC__ |