=================================================================== RCS file: /cvs/mandoc/mandoc.c,v retrieving revision 1.67 retrieving revision 1.68 diff -u -p -r1.67 -r1.68 --- mandoc/mandoc.c 2013/06/20 22:39:30 1.67 +++ mandoc/mandoc.c 2013/08/08 20:07:47 1.68 @@ -1,7 +1,7 @@ -/* $Id: mandoc.c,v 1.67 2013/06/20 22:39:30 schwarze Exp $ */ +/* $Id: mandoc.c,v 1.68 2013/08/08 20:07:47 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons - * Copyright (c) 2011, 2012 Ingo Schwarze + * Copyright (c) 2011, 2012, 2013 Ingo Schwarze * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -296,13 +296,19 @@ mandoc_escape(const char **end, const char **start, in switch (gly) { case (ESCAPE_FONT): - /* - * Pretend that the constant-width font modes are the - * same as the regular font modes. - */ - if (2 == *sz && 'C' == **start) { - (*start)++; - (*sz)--; + if (2 == *sz) { + if ('C' == **start) { + /* + * Treat constant-width font modes + * just like regular font modes. + */ + (*start)++; + (*sz)--; + } else { + if ('B' == (*start)[0] && 'I' == (*start)[1]) + gly = ESCAPE_FONTBI; + break; + } } else if (1 != *sz) break;