]> git.ipfire.org Git - thirdparty/gnulib.git/commitdiff
Fix typo in comment.
authorBruno Haible <bruno@clisp.org>
Mon, 23 Jun 2025 20:31:02 +0000 (22:31 +0200)
committerBruno Haible <bruno@clisp.org>
Mon, 23 Jun 2025 20:32:08 +0000 (22:32 +0200)
* m4/gnulib-common.m4 (gl_COMMON_BODY): Fix typo in comment.

ChangeLog
m4/gnulib-common.m4

index 10e7f399c6b8683e7995cbe99dbb0503f2301fa8..f20d0be43f3a28b6b56c6c6b3261ed569860973b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2025-06-23  Bruno Haible  <bruno@clisp.org>
+
+       Fix typo in comment.
+       * m4/gnulib-common.m4 (gl_COMMON_BODY): Fix typo in comment.
+
 2025-06-22  Bruno Haible  <bruno@clisp.org>
 
        gcd: Improve comments regarding GCD_WORD_T.
index 76a8a323fb6dddad281016a113556dc9c66dbfc8..5d1944a4f583d9da8c18d79ead9044e604542776 100644 (file)
@@ -1,5 +1,5 @@
 # gnulib-common.m4
-# serial 110
+# serial 111
 dnl Copyright (C) 2007-2025 Free Software Foundation, Inc.
 dnl This file is free software; the Free Software Foundation
 dnl gives unlimited permission to copy and/or distribute it,
@@ -955,8 +955,8 @@ AC_DEFUN([gl_COMMON_BODY], [
      -1 if n1 < n2
    The naïve code   (n1 > n2 ? 1 : n1 < n2 ? -1 : 0)  produces a conditional
    jump with nearly all GCC versions up to GCC 10.
-   This variant     (n1 < n2 ? -1 : n1 > n2)  produces a conditional with many
-   GCC versions up to GCC 9.
+   This variant     (n1 < n2 ? -1 : n1 > n2)  produces a conditional jump with
+   many GCC versions up to GCC 9.
    The better code  (n1 > n2) - (n1 < n2)  from Hacker's Delight § 2-9
    avoids conditional jumps in all GCC versions >= 3.4.  */
 #define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))