summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apropos.13
-rw-r--r--main.c2
-rw-r--r--man.13
-rw-r--r--mandoc.13
4 files changed, 7 insertions, 4 deletions
diff --git a/apropos.1 b/apropos.1
index a2848f7b..626ee73c 100644
--- a/apropos.1
+++ b/apropos.1
@@ -365,7 +365,8 @@ Specifies the pagination program to use when
.Ev MANPAGER
is not defined.
If neither PAGER nor MANPAGER is defined,
-.Pa /usr/bin/more Fl s
+.Xr more 1
+.Fl s
will be used.
.El
.Sh FILES
diff --git a/main.c b/main.c
index 166dcf6b..8068d3d5 100644
--- a/main.c
+++ b/main.c
@@ -997,7 +997,7 @@ spawn_pager(void)
if (pager == NULL || *pager == '\0')
pager = getenv("PAGER");
if (pager == NULL || *pager == '\0')
- pager = "/usr/bin/more -s";
+ pager = "more -s";
cp = mandoc_strdup(pager);
/*
diff --git a/man.1 b/man.1
index 5edad5f8..db4c86e9 100644
--- a/man.1
+++ b/man.1
@@ -381,7 +381,8 @@ Specifies the pagination program to use when
.Ev MANPAGER
is not defined.
If neither PAGER nor MANPAGER is defined,
-.Pa /usr/bin/more Fl s
+.Xr more 1
+.Fl s
will be used.
.El
.Sh FILES
diff --git a/mandoc.1 b/mandoc.1
index 260b423d..1ec15864 100644
--- a/mandoc.1
+++ b/mandoc.1
@@ -502,7 +502,8 @@ Specifies the pagination program to use when
.Ev MANPAGER
is not defined.
If neither PAGER nor MANPAGER is defined,
-.Pa /usr/bin/more Fl s
+.Xr more 1
+.Fl s
will be used.
.El
.Sh EXIT STATUS