aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/out.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2017-06-14 18:23:37 +0000
committerIngo Schwarze <schwarze@openbsd.org>2017-06-14 18:23:37 +0000
commit43258921bb262c2ae6d7a3e9569c376feb72c95b (patch)
tree123c8bccd055e9a7f8749411d8b8a87ef5e30706 /out.c
parentd687586337f23b878d3678fc908d2c30b540a058 (diff)
downloadmandoc-43258921bb262c2ae6d7a3e9569c376feb72c95b.tar.gz
mandoc-43258921bb262c2ae6d7a3e9569c376feb72c95b.tar.zst
mandoc-43258921bb262c2ae6d7a3e9569c376feb72c95b.zip
let \l use the right fill character
Diffstat (limited to 'out.c')
-rw-r--r--out.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/out.c b/out.c
index 4174eb89..95720c53 100644
--- a/out.c
+++ b/out.c
@@ -1,4 +1,4 @@
-/* $Id: out.c,v 1.67 2017/06/12 22:05:57 schwarze Exp $ */
+/* $Id: out.c,v 1.68 2017/06/14 18:23:37 schwarze Exp $ */
/*
* Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
@@ -85,10 +85,8 @@ a2roffsu(const char *src, struct roffsu *dst, enum roffscale def)
case 'v':
dst->unit = SCALE_VS;
break;
- case '\0':
- endptr--;
- /* FALLTHROUGH */
default:
+ endptr--;
if (SCALE_MAX == def)
return NULL;
dst->unit = def;