Tune blv_found

* src/lisp.h (blv_found): Prefer BASE_EQ to EQ where either will do.
This commit is contained in:
Paul Eggert 2022-08-01 00:38:32 -07:00
parent ee0ce18662
commit 932c0bc1fc

View file

@ -3793,10 +3793,10 @@ make_symbol_constant (Lisp_Object sym)
/* Buffer-local variable access functions. */
INLINE int
INLINE bool
blv_found (struct Lisp_Buffer_Local_Value *blv)
{
eassert (blv->found == !EQ (blv->defcell, blv->valcell));
eassert (blv->found == !BASE_EQ (blv->defcell, blv->valcell));
return blv->found;
}