diff options
author | Karl Williamson <khw@khw-desktop.(none)> | 2010-06-23 18:53:56 -0600 |
---|---|---|
committer | David Golden <dagolden@cpan.org> | 2010-07-17 21:50:48 -0400 |
commit | 0b70ce6f951c268ebdde6747ec43ca06875ec918 (patch) | |
tree | 26f28d8af432a5cdb7db1fce58f3b425992a0281 /t/re | |
parent | 0425eb330e75375b9a51ab41ef59e000b5e2df67 (diff) | |
download | perl-0b70ce6f951c268ebdde6747ec43ca06875ec918.tar.gz |
Remove extra blanks from t/re/re_tests, vim
My vim settings were causing extra blanks in this file; remove the ones
I added recently and set the vim options to disable the offending
feature.
Signed-off-by: David Golden <dagolden@cpan.org>
Diffstat (limited to 't/re')
-rw-r--r-- | t/re/re_tests | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/t/re/re_tests b/t/re/re_tests index 7cf5a800f2..1950bdf129 100644 --- a/t/re/re_tests +++ b/t/re/re_tests @@ -1444,14 +1444,14 @@ abc\N{def - c - \\N{NAME} must be resolved by the lexer /abc\N {SPACE}/x - c - Missing braces # Verifies catches hex errors, and doesn't expose our . notation to the outside -/\N{U+0xBEEF}/ - c - Illegal hexadecimal digit -/\N{U+BEEF.BEAD}/ - c - Illegal hexadecimal digit +/\N{U+0xBEEF}/ - c - Illegal hexadecimal digit +/\N{U+BEEF.BEAD}/ - c - Illegal hexadecimal digit # Verify works in single quotish context; regex compiler delivers slightly different msg # \N{U+BEEF.BEAD} succeeds here, because can't completely hide it from the outside. -\N{U+0xBEEF} - c - Invalid hexadecimal number -\c` - c - \"\\c`\" more clearly written simply as \"\\ \" -\c1 - c - \"\\c1\" more clearly written simply as \"q\" -\cA \001 y $& \1 +\N{U+0xBEEF} - c - Invalid hexadecimal number +\c` - c - \"\\c`\" more clearly written simply as \"\\ \" +\c1 - c - \"\\c1\" more clearly written simply as \"q\" +\cA \001 y $& \1 -# vim: set noexpandtab +# vim: softtabstop=0 noexpandtab |