If somebody asks "man 3 chmod",
authorschwarze <schwarze@openbsd.org>
Thu, 9 Aug 2018 17:23:21 +0000 (17:23 +0000)
committerschwarze <schwarze@openbsd.org>
Thu, 9 Aug 2018 17:23:21 +0000 (17:23 +0000)
don't respond with the lie: "No entry for chmod in the manual."
Instead, say "No entry for chmod in section 3 of the manual."
Came up after a question from kn@; OK kn@.

usr.bin/mandoc/main.c

index 168feb6..d9b67f5 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.209 2018/05/14 14:09:48 schwarze Exp $ */
+/*     $OpenBSD: main.c,v 1.210 2018/08/09 17:23:21 schwarze Exp $ */
 /*
  * Copyright (c) 2008-2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2010-2012, 2014-2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -760,8 +760,14 @@ fs_search(const struct mansearch *cfg, const struct manpaths *paths,
                                        return 1;
                }
                if (res != NULL && *ressz == lastsz &&
-                   strchr(*argv, '/') == NULL)
-                       warnx("No entry for %s in the manual.", *argv);
+                   strchr(*argv, '/') == NULL) {
+                       if (cfg->sec == NULL)
+                               warnx("No entry for %s in the manual.",
+                                   *argv);
+                       else
+                               warnx("No entry for %s in section %s "
+                                   "of the manual.", *argv, cfg->sec);
+               }
                lastsz = *ressz;
                argv++;
                argc--;