summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-10-23 03:28:10 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-10-23 03:28:10 (GMT)
commit0abc0260fa3419de649fcc1444e3d256a17ca6c7 (patch)
tree12d90d6892e2c2188029d834b1ca0c6702632a91
parent2eb53e65bd9cdd3b76a6447a1a51dee6e5de96a3 (diff)
downloadgit-0abc0260fa3419de649fcc1444e3d256a17ca6c7.zip
git-0abc0260fa3419de649fcc1444e3d256a17ca6c7.tar.gz
git-0abc0260fa3419de649fcc1444e3d256a17ca6c7.tar.bz2
pager: default to LESS=FRSX not LESS=FRS
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rw-r--r--pager.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pager.c b/pager.c
index 8bd33a1..4587fbb 100644
--- a/pager.c
+++ b/pager.c
@@ -50,7 +50,7 @@ void setup_pager(void)
close(fd[0]);
close(fd[1]);
- setenv("LESS", "FRS", 0);
+ setenv("LESS", "FRSX", 0);
run_pager(pager);
die("unable to execute pager '%s'", pager);
exit(255);