diff options
author | 2013-12-30 00:52:18 +0000 | |
---|---|---|
committer | 2013-12-30 00:52:18 +0000 | |
commit | f29433e9c2b328722c7ea4089c1cc53d3f7e9cfe (patch) | |
tree | 9171b5c21b5e3333ed3998170190c7902c0b388f /usr.bin/mandoc/man_macro.c | |
parent | Do not trigger end-of-sentence spacing by trailing punctuation (diff) | |
download | wireguard-openbsd-f29433e9c2b328722c7ea4089c1cc53d3f7e9cfe.tar.xz wireguard-openbsd-f29433e9c2b328722c7ea4089c1cc53d3f7e9cfe.zip |
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'usr.bin/mandoc/man_macro.c')
-rw-r--r-- | usr.bin/mandoc/man_macro.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man_macro.c b/usr.bin/mandoc/man_macro.c index cd60c9571cb..4864f6550a6 100644 --- a/usr.bin/mandoc/man_macro.c +++ b/usr.bin/mandoc/man_macro.c @@ -1,4 +1,4 @@ -/* $Id: man_macro.c,v 1.42 2013/12/25 00:50:03 schwarze Exp $ */ +/* $Id: man_macro.c,v 1.43 2013/12/30 00:52:18 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2012, 2013 Ingo Schwarze <schwarze@openbsd.org> @@ -434,7 +434,7 @@ in_line_eoln(MACRO_PROT_ARGS) */ if (n != man->last && - mandoc_eos(man->last->string, strlen(man->last->string), 0)) + mandoc_eos(man->last->string, strlen(man->last->string))) man->last->flags |= MAN_EOS; /* |