=================================================================== RCS file: /cvs/mandoc/main.c,v retrieving revision 1.265 retrieving revision 1.267 diff -u -p -r1.265 -r1.267 --- mandoc/main.c 2016/04/14 20:55:48 1.265 +++ mandoc/main.c 2016/07/08 22:29:05 1.267 @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.265 2016/04/14 20:55:48 schwarze Exp $ */ +/* $Id: main.c,v 1.267 2016/07/08 22:29:05 schwarze Exp $ */ /* * Copyright (c) 2008-2012 Kristaps Dzonsons * Copyright (c) 2010-2012, 2014-2016 Ingo Schwarze @@ -479,7 +479,7 @@ main(int argc, char *argv[]) conf.output.synopsisonly); if (argc > 1 && curp.outtype <= OUTT_UTF8) - ascii_sepline(curp.outdata); + terminal_sepline(curp.outdata); } else if (rc < MANDOCLEVEL_ERROR) rc = MANDOCLEVEL_ERROR; @@ -664,8 +664,8 @@ fs_lookup(const struct manpaths *paths, size_t ipath, found: #if HAVE_SQLITE3 - warnx("outdated mandoc.db lacks %s(%s) entry, run makewhatis %s", - name, sec, paths->paths[ipath]); + warnx("outdated mandoc.db lacks %s(%s) entry, run %s %s", + name, sec, BINM_MAKEWHATIS, paths->paths[ipath]); #endif *res = mandoc_reallocarray(*res, ++*ressz, sizeof(struct manpage)); page = *res + (*ressz - 1);