=================================================================== RCS file: /cvs/mandoc/mdoc.c,v retrieving revision 1.197 retrieving revision 1.198 diff -u -p -r1.197 -r1.198 --- mandoc/mdoc.c 2012/05/27 17:48:57 1.197 +++ mandoc/mdoc.c 2012/06/12 20:21:04 1.198 @@ -1,4 +1,4 @@ -/* $Id: mdoc.c,v 1.197 2012/05/27 17:48:57 schwarze Exp $ */ +/* $Id: mdoc.c,v 1.198 2012/06/12 20:21:04 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2010 Ingo Schwarze @@ -302,7 +302,7 @@ mdoc_parseln(struct mdoc *m, int ln, char *buf, int of m->flags &= ~MDOC_SYNOPSIS; } - return(mandoc_getcontrol(buf, &offs) ? + return(roff_getcontrol(m->roff, buf, &offs) ? mdoc_pmacro(m, ln, buf, offs) : mdoc_ptext(m, ln, buf, offs)); }