Skip to content

Commit 1934e55

Browse files
committed
Clarify behavior when PAGER env var is unset
Signed-off-by: Jack Baldry <[email protected]>
1 parent a3d8190 commit 1934e55

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/tk/util.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ func pageln(i ...interface{}) error {
1616

1717
// fPageln invokes the systems pager with the supplied data.
1818
// If the PAGER environment variable is empty, no pager is used.
19-
// If the PAGER environment variable is unset, use less with posix flags.
19+
// If the PAGER environment variable is unset, use GNU less with convenience flags.
2020
func fPageln(r io.Reader) error {
2121
pager, ok := os.LookupEnv("PAGER")
2222
if !ok {

0 commit comments

Comments
 (0)