From b481fbe92f793bae2ccd9d2d4efdaf0549390a41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 19 Feb 2025 19:57:16 +0100 Subject: [PATCH] * src/fns.c (Fmapconcat): Faster fast-path condition --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index 6dfac03a2dd..1d94eb3b73d 100644 --- a/src/fns.c +++ b/src/fns.c @@ -3450,7 +3450,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))