diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2022-05-08 23:33:49 +0200 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2022-05-11 10:28:07 +0200 |
commit | 14fe0eec0cc6e4ad636d28832ca6ae22955abd81 (patch) | |
tree | 9a7a0d8ec6cf480ce7e05c39c6191abe0108351b | |
parent | 95717db1e8045f14ca427243a86a0cd433e07273 (diff) | |
download | emacs-14fe0eec0cc6e4ad636d28832ca6ae22955abd81.tar.gz emacs-14fe0eec0cc6e4ad636d28832ca6ae22955abd81.tar.bz2 emacs-14fe0eec0cc6e4ad636d28832ca6ae22955abd81.zip |
* src/lisp.h (FOR_EACH_TAIL_INTERNAL): Faster node comparison.
-rw-r--r-- | src/lisp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h index 1ad89fc4689..b00f3f7e2e6 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -5515,7 +5515,7 @@ struct for_each_tail_internal || ((check_quit) ? maybe_quit () : (void) 0, 0 < --li.n) \ || (li.q = li.n = li.max <<= 1, li.n >>= USHRT_WIDTH, \ li.tortoise = (tail), false)) \ - && EQ (tail, li.tortoise)) \ + && BASE_EQ (tail, li.tortoise)) \ ? (cycle) : (void) 0)) /* Do a `for' loop over alist values. */ |