diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-31 23:23:10 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2013-12-31 23:23:10 +0000 |
commit | 8165032a586fb8d32ff25ec7340db91a5568e604 (patch) | |
tree | 12fb3a063e97fce5041017ce1e096a75ccc6dc11 /mdoc.c | |
parent | 00a83eb67618ef2d3d4efc692882efa3dc6252ca (diff) | |
download | mandoc-8165032a586fb8d32ff25ec7340db91a5568e604.tar.gz |
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'mdoc.c')
-rw-r--r-- | mdoc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -846,7 +846,7 @@ mdoc_ptext(struct mdoc *mdoc, int line, char *buf, int offs) assert(buf < end); - if (mandoc_eos(buf+offs, (size_t)(end-buf-offs), 0)) + if (mandoc_eos(buf+offs, (size_t)(end-buf-offs))) mdoc->last->flags |= MDOC_EOS; return(1); |