From: Eli Zaretskii Date: Sat, 31 May 2025 14:32:49 +0000 (+0300) Subject: ; * src/fns.c (fixnum_float_cmp): Don't use non-ASCII characters. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2024b5632f3494a60e8b781a7ef928af112b2f46;p=emacs.git ; * src/fns.c (fixnum_float_cmp): Don't use non-ASCII characters. (cherry picked from commit 4b527088e66fe9f39ca4060cf1bc5918feb37c49) --- 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 */