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:
parent
33485be9b6
commit
1990dd38ab
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue