=================================================================== RCS file: /cvs/mandoc/out.c,v retrieving revision 1.20 retrieving revision 1.22 diff -u -p -r1.20 -r1.22 --- mandoc/out.c 2010/07/19 07:53:40 1.20 +++ mandoc/out.c 2010/07/22 14:03:50 1.22 @@ -1,4 +1,4 @@ -/* $Id: out.c,v 1.20 2010/07/19 07:53:40 kristaps Exp $ */ +/* $Id: out.c,v 1.22 2010/07/22 14:03:50 kristaps Exp $ */ /* * Copyright (c) 2009, 2010 Kristaps Dzonsons * @@ -255,6 +255,9 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t case ('\''): term = '\''; break; + case ('0'): + j++; + /* FALLTHROUGH */ default: i--; lim = 1; @@ -278,7 +281,7 @@ a2roffdeco(enum roffdeco *d, const char **word, size_t *d = DECO_NOSPACE; return(i); default: - *d = DECO_SPECIAL; + *d = DECO_SSPECIAL; i--; lim = 1; break;