* m4/gnulib-common.m4 (_GL_CMP): Properly parenthesize.
+2020-07-24 Paul Eggert <eggert@cs.ucla.edu>
+
+ Fix _GL_CMP parenthesization typo
+ * m4/gnulib-common.m4 (_GL_CMP): Properly parenthesize.
+
2020-07-24 Bruno Haible <bruno@clisp.org>
dfa: Revert breaking gawk.
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))
+#define _GL_CMP(n1, n2) (((n1) > (n2)) - ((n1) < (n2)))
])
dnl Hint which direction to take regarding cross-compilation guesses:
dnl When a user installs a program on a platform they are not intimately