* lib/tap-driver (anonymous subroutine printing the script version message): Add missing trailing newline to the version message. --- ChangeLog | 6 ++++++ lib/tap-driver | 2 +- 2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog index 6036f42..b44766c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2011-08-05 Stefano Lattarini <stefano.lattar...@gmail.com> + tap: fix typo in TAP driver version message + * lib/tap-driver (anonymous subroutine printing the script version + message): Add missing trailing newline to the version message. + +2011-08-05 Stefano Lattarini <stefano.lattar...@gmail.com> + tap docs: we don't support pragma or version directives (yet) * doc/automake.texi (Incompatibilities with other TAP parsers and drivers): Document that limitation. Normalize an unrelated diff --git a/lib/tap-driver b/lib/tap-driver index c748c5c..91edd1e 100755 --- a/lib/tap-driver +++ b/lib/tap-driver @@ -68,7 +68,7 @@ my $diag_string = "#"; Getopt::Long::GetOptions ( 'help' => sub { print $HELP; exit 0; }, - 'version' => sub { print "$ME $VERSION"; exit 0; }, + 'version' => sub { print "$ME $VERSION\n"; exit 0; }, 'test-name=s' => \$test_script_name, 'log-file=s' => \$log_file, 'trs-file=s' => \$trs_file, -- 1.7.2.3