aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc.c
diff options
context:
space:
mode:
Diffstat (limited to 'mandoc.c')
-rw-r--r--mandoc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/mandoc.c b/mandoc.c
index 69972c04..68caf719 100644
--- a/mandoc.c
+++ b/mandoc.c
@@ -1,4 +1,4 @@
-/* $Id: mandoc.c,v 1.25 2010/07/21 20:35:03 kristaps Exp $ */
+/* $Id: mandoc.c,v 1.26 2010/07/22 14:03:50 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -109,6 +109,9 @@ mandoc_special(char *p)
case ('\''):
term = '\'';
break;
+ case ('0'):
+ i++;
+ /* FALLTHROUGH */
default:
len = 1;
p--;