diff options
author | Olivier Blin <dev@blino.org> | 2012-07-13 00:14:24 +0200 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2012-07-13 00:14:24 +0200 |
commit | 5624dd5d0e66637fea244d55828ede5178d3c310 (patch) | |
tree | e8d63cb7cbf59f2c0688f2b79ff5210f782a0b6a /mandriva | |
parent | d43b7b56fcd8292b3df5781517ac0af66b2befd1 (diff) | |
download | initscripts-5624dd5d0e66637fea244d55828ede5178d3c310.tar initscripts-5624dd5d0e66637fea244d55828ede5178d3c310.tar.gz initscripts-5624dd5d0e66637fea244d55828ede5178d3c310.tar.bz2 initscripts-5624dd5d0e66637fea244d55828ede5178d3c310.tar.xz initscripts-5624dd5d0e66637fea244d55828ede5178d3c310.zip |
inputrc: do not export LESS=-MM anymore
LESS=-MM breaks colorized output of git, and maybe perl-doc as well
(Mdv #57143).
It seems no other distro is shipping this as default,
should be safe to remove.
Diffstat (limited to 'mandriva')
-rw-r--r-- | mandriva/inputrc.csh | 1 | ||||
-rw-r--r-- | mandriva/inputrc.sh | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/mandriva/inputrc.csh b/mandriva/inputrc.csh index 6ebf0dc4..4a9e9373 100644 --- a/mandriva/inputrc.csh +++ b/mandriva/inputrc.csh @@ -1,5 +1,4 @@ test -f $HOME/.inputrc || setenv INPUTRC /etc/inputrc -setenv LESS -MM test -f $HOME/.less || setenv LESSKEY /etc/.less # but tcsh command line doesn't use inputrc, so we have to define the diff --git a/mandriva/inputrc.sh b/mandriva/inputrc.sh index 69296ea8..c5f6faaa 100644 --- a/mandriva/inputrc.sh +++ b/mandriva/inputrc.sh @@ -1,6 +1,5 @@ #!/bin/bash test -f $HOME/.inputrc || export INPUTRC=/etc/inputrc -export LESS=-MM test -f $HOME/.less || export LESSKEY=/etc/.less |