1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

(SCM_EVALIM2): Use SCM_EQ_P instead of `=='.

This commit is contained in:
Marius Vollmer 2001-05-20 23:38:36 +00:00
parent 33485be9b6
commit 1990dd38ab

View file

@ -95,7 +95,7 @@ extern SCM scm_eval_options_interface (SCM setting);
*
* For an explanation of symbols containing "EVAL", see beginning of eval.c.
*/
#define SCM_EVALIM2(x) (((x) == SCM_EOL) \
#define SCM_EVALIM2(x) ((SCM_EQ_P ((x), SCM_EOL)) \
? scm_misc_error (NULL, scm_s_expression, SCM_EOL), 0 \
: (x))
#ifdef MEMOIZE_LOCALS