]> git.saurik.com Git - bison.git/commitdiff
* tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
authorAkim Demaille <akim@epita.fr>
Thu, 25 Apr 2002 10:30:27 +0000 (10:30 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 25 Apr 2002 10:30:27 +0000 (10:30 +0000)
between `!' and the command.
Reported by Paul Eggert.

ChangeLog
tests/sets.at

index be8c74c39d0b0f98f0f9dbacfb4172f16f2e0615..405359b3d0f6c45fc82ec60404557bc184f93273 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-04-25  Akim Demaille  <akim@epita.fr>
+
+       * tests/sets.at (AT_EXTRACT_SETS): Sed portability issue: no space
+       between `!' and the command.
+       Reported by Paul Eggert.
+
 2002-04-24  Robert Anisko  <robert@lrde.epita.fr>
 
        * tests/calc.at: Exercise prologue splitting.
index 64402c20ac99d17fc930c80f5659e459463c7d3b..e7f96930fa1e9dc938c7eeae47ad610ca92d91d7 100644 (file)
@@ -29,25 +29,25 @@ m4_define([AT_EXTRACT_SETS],
    :null
    p
    n
-   /^[         ]*$/b null
+   /^[         ]*$/ !b null
 }
 /^FIRSTS$/ {
    :firsts
    p
    n
-   /^[         ]*$/b firsts
+   /^[         ]*$/ !b firsts
 }
 /^FDERIVES$/ {
    :fderiv
    p
    n
-   /^[         ]*$/b fderiv
+   /^[         ]*$/ !b fderiv
 }
 /^DERIVES$/ {
    :deriv
    p
    n
-   /^[         ]*$/b deriv
+   /^[         ]*$/ !b deriv
 }
 ]])
 AT_CHECK([sed -f extract.sed $1], 0, [stdout])