diff options
| author | Paul Eggert | 2022-08-01 00:38:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2022-08-01 01:17:12 -0700 |
| commit | 932c0bc1fc80a63fb4d6015c049592f3c228cc4f (patch) | |
| tree | 0f55a54caa55c3129c7d83b164010f6cccb4e901 /src | |
| parent | ee0ce186621d788d9292afe8de9459d4af2d49c9 (diff) | |
| download | emacs-932c0bc1fc80a63fb4d6015c049592f3c228cc4f.tar.gz emacs-932c0bc1fc80a63fb4d6015c049592f3c228cc4f.zip | |
Tune blv_found
* src/lisp.h (blv_found): Prefer BASE_EQ to EQ where either will do.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lisp.h | 4 |
1 files 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) | |||
| 3793 | 3793 | ||
| 3794 | /* Buffer-local variable access functions. */ | 3794 | /* Buffer-local variable access functions. */ |
| 3795 | 3795 | ||
| 3796 | INLINE int | 3796 | INLINE bool |
| 3797 | blv_found (struct Lisp_Buffer_Local_Value *blv) | 3797 | blv_found (struct Lisp_Buffer_Local_Value *blv) |
| 3798 | { | 3798 | { |
| 3799 | eassert (blv->found == !EQ (blv->defcell, blv->valcell)); | 3799 | eassert (blv->found == !BASE_EQ (blv->defcell, blv->valcell)); |
| 3800 | return blv->found; | 3800 | return blv->found; |
| 3801 | } | 3801 | } |
| 3802 | 3802 | ||