From: Mattias EngdegÄrd Date: Wed, 19 Feb 2025 18:57:16 +0000 (+0100) Subject: * src/fns.c (Fmapconcat): Faster fast-path condition X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc5b80756bf6223cc6e96403d028a2c8490973d3;p=emacs.git * src/fns.c (Fmapconcat): Faster fast-path condition (cherry picked from commit b481fbe92f793bae2ccd9d2d4efdaf0549390a41) --- diff --git a/src/fns.c b/src/fns.c index b6098816049..4e00ad71c2e 100644 --- a/src/fns.c +++ b/src/fns.c @@ -3448,7 +3448,7 @@ FUNCTION must be a function of one argument, and must return a value return empty_unibyte_string; Lisp_Object *args; SAFE_ALLOCA_LISP (args, args_alloc); - if (EQ (function, Qidentity)) + if (BASE_EQ (function, Qidentity)) { /* Fast path when no function call is necessary. */ if (CONSP (sequence))