=================================================================== RCS file: /cvs/mandoc/roff.c,v retrieving revision 1.187 retrieving revision 1.189 diff -u -p -r1.187 -r1.189 --- mandoc/roff.c 2013/12/15 21:23:52 1.187 +++ mandoc/roff.c 2013/12/30 18:44:06 1.189 @@ -1,4 +1,4 @@ -/* $Id: roff.c,v 1.187 2013/12/15 21:23:52 schwarze Exp $ */ +/* $Id: roff.c,v 1.189 2013/12/30 18:44:06 schwarze Exp $ */ /* * Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons * Copyright (c) 2010, 2011, 2012, 2013 Ingo Schwarze @@ -646,8 +646,7 @@ roff_parsetext(char **bufp, size_t *szp, int pos, int 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; @@ -1733,7 +1732,7 @@ roff_userdef(ROFF_ARGS) /* * Collect pointers to macro argument strings - * and null-terminate them. + * and NUL-terminate them. */ cp = *bufp + pos; for (i = 0; i < 9; i++)