From 2024b5632f3494a60e8b781a7ef928af112b2f46 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 31 May 2025 17:32:49 +0300 Subject: [PATCH] ; * src/fns.c (fixnum_float_cmp): Don't use non-ASCII characters. (cherry picked from commit 4b527088e66fe9f39ca4060cf1bc5918feb37c49) --- src/fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fns.c b/src/fns.c index eefc74b3b38..cdee4859616 100644 --- a/src/fns.c +++ b/src/fns.c @@ -3041,7 +3041,7 @@ fixnum_float_cmp (EMACS_INT a, double b) { /* This doesn't mean that a=b because the conversion may have rounded. However, b must be an integer that fits in an EMACS_INT, - because |b| ≤ 2|a| and EMACS_INT has at least one bit more than + because |b| <= 2|a| and EMACS_INT has at least one bit more than needed to represent any fixnum. Thus we can compare in the integer domain instead. */ EMACS_INT ib = b; /* lossless conversion */ -- 2.39.5