diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-23 05:28:10 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-23 05:28:10 +0200 |
commit | 0abc0260fa3419de649fcc1444e3d256a17ca6c7 (patch) | |
tree | 12d90d6892e2c2188029d834b1ca0c6702632a91 /pager.c | |
parent | Make prune also run prune-packed (diff) | |
download | git-0abc0260fa3419de649fcc1444e3d256a17ca6c7.tar.xz git-0abc0260fa3419de649fcc1444e3d256a17ca6c7.zip |
pager: default to LESS=FRSX not LESS=FRS
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to '')
-rw-r--r-- | pager.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |