[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
AT_KEYWORDS fix
From: |
Ralf Wildenhues |
Subject: |
AT_KEYWORDS fix |
Date: |
Wed, 27 Apr 2005 11:16:33 +0200 |
User-agent: |
Mutt/1.4.1i |
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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- AT_KEYWORDS fix,
Ralf Wildenhues <=