AT_KEYWORDS([foo bar])
AT_KEYWORDS([baz])
causes bar and baz to be separated by a newline in the output and thus
baz to vanish in `testsuite --help'. The patch below should fix that.
Regards,
Ralf
* lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
not newline.
Index: lib/autotest/general.m4
===================================================================
RCS file: /cvsroot/autoconf/autoconf/lib/autotest/general.m4,v
retrieving revision 1.175
diff -u -r1.175 general.m4
--- lib/autotest/general.m4 4 Apr 2005 10:19:10 -0000 1.175
+++ lib/autotest/general.m4 27 Apr 2005 09:12:11 -0000
@@ -1120,8 +1120,7 @@
# ---------------------
# Declare a list of keywords associated to the current test group.
m4_define([AT_KEYWORDS],
-[m4_append_uniq([AT_keywords], [$1], [
-])])
+[m4_append_uniq([AT_keywords], [$1], [ ])])
# AT_CAPTURE_FILE(FILE)