projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ee0ce18
)
Tune blv_found
author
Paul Eggert
<eggert@cs.ucla.edu>
Mon, 1 Aug 2022 07:38:32 +0000
(
00:38
-0700)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Mon, 1 Aug 2022 08:17:12 +0000
(
01:17
-0700)
* src/lisp.h (blv_found): Prefer BASE_EQ to EQ where either will do.
src/lisp.h
patch
|
blob
|
history
diff --git
a/src/lisp.h
b/src/lisp.h
index 8fcc9b6e75a7cfd6cce84a54f2959b7db43ce197..807fcb0e5ba28db3141a76c1dc03cd8701c9e6a7 100644
(file)
--- 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;
}