From 932c0bc1fc80a63fb4d6015c049592f3c228cc4f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 1 Aug 2022 00:38:32 -0700 Subject: [PATCH] Tune blv_found * src/lisp.h (blv_found): Prefer BASE_EQ to EQ where either will do. --- src/lisp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lisp.h b/src/lisp.h index 8fcc9b6e75a..807fcb0e5ba 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -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; } -- 2.39.2