diff options
author | Junio C Hamano <junkio@cox.net> | 2006-10-22 20:28:10 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-10-22 20:28:10 -0700 |
commit | 0abc0260fa3419de649fcc1444e3d256a17ca6c7 (patch) | |
tree | 12d90d6892e2c2188029d834b1ca0c6702632a91 /pager.c | |
parent | 2eb53e65bd9cdd3b76a6447a1a51dee6e5de96a3 (diff) | |
download | git-0abc0260fa3419de649fcc1444e3d256a17ca6c7.tar.gz |
pager: default to LESS=FRSX not LESS=FRS
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'pager.c')
-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); |