diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-28 10:15:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-07-28 10:15:12 +0000 |
commit | c8cf04457494ae457f83dee07e4cbebe2b439132 (patch) | |
tree | 2de6db1a095a83235e3a9e98d01b19a2459ba387 /main.c | |
parent | ff829fb63a81e275a350d4f7c781aca1acf92661 (diff) | |
download | mandoc-c8cf04457494ae457f83dee07e4cbebe2b439132.tar.gz |
Fix in newline.
Correct printing of N-char predefined/special strings.
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -418,7 +418,8 @@ fdesc(struct buf *blk, struct buf *ln, struct curparse *curp) /* NOTE a parser may not have been assigned, yet. */ if ( ! (man || mdoc)) { - (void)fprintf(stderr, "%s: not a manual", curp->file); + (void)fprintf(stderr, "%s: not a manual\n", + curp->file); return(0); } |