mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 14:30:34 +02:00
* eval.c: fix various preprocessor usages of new public
symbols to expect 0 or 1 values rather than 1 or undefined. i.e. change #ifdef to #if, etc.
This commit is contained in:
parent
1a603dc072
commit
2272114093
1 changed files with 3 additions and 3 deletions
|
@ -1049,7 +1049,7 @@ scm_m_cont (SCM xorig, SCM env SCM_UNUSED)
|
|||
return scm_cons (SCM_IM_CONT, SCM_CDR (xorig));
|
||||
}
|
||||
|
||||
#ifdef SCM_ENABLE_ELISP
|
||||
#if SCM_ENABLE_ELISP
|
||||
|
||||
SCM_SYNTAX (s_nil_cond, "nil-cond", scm_makmmacro, scm_m_nil_cond);
|
||||
|
||||
|
@ -2575,7 +2575,7 @@ dispatch:
|
|||
}
|
||||
|
||||
|
||||
#ifdef SCM_ENABLE_ELISP
|
||||
#if SCM_ENABLE_ELISP
|
||||
|
||||
case (SCM_ISYMNUM (SCM_IM_NIL_COND)):
|
||||
{
|
||||
|
@ -2669,7 +2669,7 @@ dispatch:
|
|||
scm_misc_error (NULL, "Wrong type to apply: ~S", scm_list_1 (proc));
|
||||
case scm_tc7_vector:
|
||||
case scm_tc7_wvect:
|
||||
#ifdef SCM_HAVE_ARRAYS
|
||||
#if SCM_HAVE_ARRAYS
|
||||
case scm_tc7_bvect:
|
||||
case scm_tc7_byvect:
|
||||
case scm_tc7_svect:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue