t/re/re_tests: Move vim hints to eof
authorKarl Williamson <public@khwilliamson.com>
Sun, 11 Aug 2013 04:12:28 +0000 (22:12 -0600)
committerKarl Williamson <public@khwilliamson.com>
Sun, 11 Aug 2013 04:31:40 +0000 (22:31 -0600)
Commit c30fc27b appended lines in the file to after the editor hints
lines.  This caused my vim to not notice them.

t/re/re_tests

index 55a2b95..b24e82d 100644 (file)
@@ -1763,7 +1763,6 @@ A+?(*THEN)BC(?{}) AAABC   y       $&      ABC
 A+?(*PRUNE)BC(?{})     AAABC   y       $&      ABC
 A+(*THEN)BC(?{})       AAABC   y       $&      AAABC
 A+(*PRUNE)BC(?{})      AAABC   y       $&      AAABC
-# vim: softtabstop=0 noexpandtab
 /[#]/  a#b     y       $&      #
 /[#]b/ a#b     y       $&      #b
 /[#]/x a#b     y       $&      #
@@ -1776,9 +1775,13 @@ A+(*PRUNE)BC(?{})        AAABC   y       $&      AAABC
 /[(?#](??{'b'})/       a#b     y       $&      #b
 /(?#)(?{})b/x  a#b     y       $&      b
 /(?#)(??{'b'})/x       a#b     y       $&      b
+
 # RT #119069: PCRE regression test: no segfault
 ^(?=(a)){0}b(?1)       back    y       $&      ba
 # RT #119071: PCRE regression test: No warning of infinite regression
 (?:(a(*SKIP)b)){0}(?:(?1)|ac)  x       n       -       -
 # RT #119073: PCRE regression test: {0} => NOTHING optimization
 (?1)(?:(b)){0} b       y       $&      b
+
+# Keep these lines at the end of the file
+# vim: softtabstop=0 noexpandtab