1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: If PAGER is not set, use /usr/bin/pager
See Debian Policy "Editors and pagers".
Origin: vendor
Forwarded: not-needed
Author: Salvatore Bonaccorso <carnil@debian.org>
Last-Update: 2017-06-09
--- a/shelldap
+++ b/shelldap
@@ -630,7 +630,7 @@ sub init
$self->{'API'}->{'match_uniq'} = 0;
$self->{'editor'} = $conf->{'editor'} || $ENV{'EDITOR'} || '/usr/bin/editor' || 'vi';
- $self->{'pager'} = $conf->{'pager'} || $ENV{'PAGER'} || 'less';
+ $self->{'pager'} = $conf->{'pager'} || $ENV{'PAGER'} || '/usr/bin/pager' || 'less';
$self->{'env'} = [ qw/ debug cacheage timeout attributes configfile / ];
# let autocomplete work with the '=' character
|