aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/man_macro.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2013-12-31 23:23:10 +0000
committerIngo Schwarze <schwarze@openbsd.org>2013-12-31 23:23:10 +0000
commita2e966d93f52177b274c131fea83dafbf9890721 (patch)
tree96f8c8233ed1cf8eabbf5203c2e7eea0adea74d9 /man_macro.c
parent9df73edf21694f640f489f84755d19ea5ca9ddaa (diff)
downloadmandoc-a2e966d93f52177b274c131fea83dafbf9890721.tar.gz
mandoc-a2e966d93f52177b274c131fea83dafbf9890721.tar.zst
mandoc-a2e966d93f52177b274c131fea83dafbf9890721.zip
Simplify: Remove an unused argument from the mandoc_eos() function.
No functional change.
Diffstat (limited to 'man_macro.c')
-rw-r--r--man_macro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man_macro.c b/man_macro.c
index 479d0484..782f8322 100644
--- a/man_macro.c
+++ b/man_macro.c
@@ -1,4 +1,4 @@
-/* $Id: man_macro.c,v 1.79 2013/12/25 00:50:05 schwarze Exp $ */
+/* $Id: man_macro.c,v 1.80 2013/12/31 23:23:10 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -438,7 +438,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;
/*