summaryrefslogtreecommitdiff
path: root/roff.c
diff options
context:
space:
mode:
authorUlrich Spörlein <uqs@FreeBSD.org>2014-01-31 23:04:19 +0000
committerUlrich Spörlein <uqs@FreeBSD.org>2014-01-31 23:04:19 +0000
commit53f5f26c3e5c6d5c310f44f1882afbd9cdd0297b (patch)
treed7b35c234d3d069b444ab7a093f25d22a70d4db5 /roff.c
parent3d011e300bd9608b1a158e0da873026a1a09517b (diff)
Notes
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/roff.c b/roff.c
index e33216c40970f..42240d21fe60e 100644
--- a/roff.c
+++ b/roff.c
@@ -1,4 +1,4 @@
-/* $Id: roff.c,v 1.188 2013/12/25 00:50:05 schwarze Exp $ */
+/* $Id: roff.c,v 1.189 2013/12/30 18:44:06 schwarze Exp $ */
/*
* Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze <schwarze@openbsd.org>
@@ -646,8 +646,7 @@ roff_parsetext(char **bufp, size_t *szp, int pos, int *offs)
if ('\\' == *p) {
/* Skip over escapes. */
p++;
- esc = mandoc_escape
- ((const char const **)&p, NULL, NULL);
+ esc = mandoc_escape((const char **)&p, NULL, NULL);
if (ESCAPE_ERROR == esc)
break;
continue;