diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2017-07-01 09:47:30 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2017-07-01 09:47:30 +0000 |
commit | a288316b2989716c6f4ed17dce8e778e9b6de9d7 (patch) | |
tree | fd723758e0cdfb5ee949c3eceaa129843f13d59b /manpath.c | |
parent | 17984e1e0b09558f8bfb0a8ee9e49bc97e4a554e (diff) | |
download | mandoc-a288316b2989716c6f4ed17dce8e778e9b6de9d7.tar.gz |
Basic reporting of .Xrs to manual pages that don't exist
in the base system, inspired by mdoclint(1).
We are able to do this because (1) the -mdoc parser, the -Tlint validator,
and the man(1) manual page lookup code are all in the same program
and (2) the mandoc.db(5) database format allows fast lookup.
Feedback from, previous versions tested by, and OK jmc@.
A few features will be added to this in the tree, step by step.
Diffstat (limited to 'manpath.c')
-rw-r--r-- | manpath.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id$ */ +/* $Id$ */ /* * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org> * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv> @@ -91,6 +91,13 @@ manconf_parse(struct manconf *conf, const char *file, manpath_parseline(&conf->manpath, defp, 0); } +void +manpath_base(struct manpaths *dirs) +{ + char path_base[] = MANPATH_BASE; + manpath_parseline(dirs, path_base, 0); +} + /* * Parse a FULL pathname from a colon-separated list of arrays. */ |