From 3a61aeb489c0cfa672f16ac9b7659a34354cabd4 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 30 Oct 1995 19:34:27 +0000 Subject: [PATCH] (Fsafe_length): Add missing parentheses around & within comparison. --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index 1bcb963e20f..2e282011e75 100644 --- a/src/fns.c +++ b/src/fns.c @@ -153,7 +153,7 @@ which is at least the number of distinct elements.") if (EQ (tail, halftail) && len != 0) break; len++; - if (len & 1 == 0) + if ((len & 1) == 0) halftail = XCONS (halftail)->cdr; } -- 2.39.2