Reported by Arnold Robbins <arnold@skeeve.com>.
* lib/dfa.c (compare): Don't reference the _GL_CMP macro.
+2020-07-24 Bruno Haible <bruno@clisp.org>
+
+ dfa: Revert breaking gawk.
+ Reported by Arnold Robbins <arnold@skeeve.com>.
+ * lib/dfa.c (compare): Don't reference the _GL_CMP macro.
+
2020-07-23 Bruno Haible <bruno@clisp.org>
Optimize three-valued comparison between integers.
compare (const void *a, const void *b)
{
position const *p = a, *q = b;
- return _GL_CMP (p->index, q->index);
+ return (p->index > q->index) - (p->index < q->index);
}
static void