blob: 397613e5ba17abe0b6755adee870e3c3100f76c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
--- lib/Pod/Perldoc.pm.orig 2015-02-12 03:07:39 UTC
+++ lib/Pod/Perldoc.pm
@@ -1920,6 +1920,7 @@ sub page { # apply a pager to the outpu
# fix visible escape codes in ToTerm output
# https://bugs.debian.org/758689
local $ENV{LESS} = defined $ENV{LESS} ? "$ENV{LESS} -R" : "-R";
+ local $ENV{MORE} = defined $ENV{MORE} ? "$ENV{MORE} -R" : "-R";
last if system("$pager \"$output\"") == 0;
}
}
|