Navigation Menu

Skip to content

Commit

Permalink
Merge commit 'origin/master'
Browse files Browse the repository at this point in the history
Conflicts:
	Changes
  • Loading branch information
hinrik committed Jul 5, 2009
2 parents af59b19 + 471efbf commit 749fd9a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changes
@@ -1,4 +1,5 @@
0.11
- Use PAGER environment variable if set
- Fix bug which was causing it to only accept 's02' but not 's02-bits'

0.10 Thu Jul 2 16:49:16 GMT 2009
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -63,6 +63,7 @@ share/Spec/S32-setting-library/Rules.pod
share/Spec/S32-setting-library/Str.pod
share/Spec/S32-setting-library/Temporal.pod
inc/Module/Install.pm
inc/Module/Install/AuthorRequires.pm
inc/Module/Install/AuthorTests.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
Expand Down
4 changes: 4 additions & 0 deletions Makefile.PL
Expand Up @@ -25,6 +25,10 @@ requires ('Pod::Xhtml' => '0');
requires ('Win32::Console::ANSI' => '0') if $^O eq 'MSWin32';
test_requires ('Test::More' => '0');
test_requires ('Test::Script' => '0');
author_requires('Perl::Critic' => '1.098');
author_requires('Test::Perl::Critic' => '0');
author_requires('Test::Pod' => '0');
author_requires('Test::Pod::Coverage' => '0');
tests_recursive();
recursive_author_tests('xt');
WriteAll();
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Grok.pm
Expand Up @@ -255,7 +255,7 @@ sub _print {
print $output;
}
else {
my $pager = $Config{pager};
my $pager = defined $ENV{PAGER} ? $ENV{PAGER} : $Config{pager};
my ($temp_fh, $temp) = tempfile(UNLINK => 1);
print $temp_fh $output;
close $temp_fh;
Expand Down

0 comments on commit 749fd9a

Please sign in to comment.