Tune blv_found
* src/lisp.h (blv_found): Prefer BASE_EQ to EQ where either will do.
This commit is contained in:
parent
ee0ce18662
commit
932c0bc1fc
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue