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_macro.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_macro.c')
-rw-r--r-- | mdoc_macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc_macro.c b/mdoc_macro.c index 9d891ecf..bd529c03 100644 --- a/mdoc_macro.c +++ b/mdoc_macro.c @@ -683,7 +683,7 @@ append_delims(struct mdoc *mdoc, int line, int *pos, char *buf) * knowing which symbols break this behaviour, for * example, `. ;' shouldn't propagate the double-space. */ - if (mandoc_eos(p, strlen(p), 0)) + if (mandoc_eos(p, strlen(p))) mdoc->last->flags |= MDOC_EOS; } |