X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/b42bad5fdb20cefbafdcc2b3c90e191b4a231787..ac153baba6893597d9bfc0e22469736fbc5e6821:/sbr/fmt_compile.c diff --git a/sbr/fmt_compile.c b/sbr/fmt_compile.c index d8d64323..2ad46cf5 100644 --- a/sbr/fmt_compile.c +++ b/sbr/fmt_compile.c @@ -35,7 +35,7 @@ * * - Add code to fmttest.c to display your new function. * - * - Document the new function in the mh-format(5) man page. + * - Document the new function in mh-format(5). * */ @@ -352,7 +352,7 @@ lookup(char *name) while ((nm = t->name)) { if (*nm == c && strcmp (nm, name) == 0) - return (ftbl = t); + return ftbl = t; t++; } @@ -488,9 +488,7 @@ do_spec(char *sp) { char *cp = sp; int c; -#ifndef lint int ljust = 0; -#endif /* not lint */ int wid = 0; char fill = ' ';