=================================================================== RCS file: /cvs/mandoc/eqn.c,v retrieving revision 1.52 retrieving revision 1.53 diff -u -p -r1.52 -r1.53 --- mandoc/eqn.c 2014/10/12 19:31:41 1.52 +++ mandoc/eqn.c 2014/10/12 20:08:58 1.53 @@ -1,6 +1,7 @@ -/* $Id: eqn.c,v 1.52 2014/10/12 19:31:41 schwarze Exp $ */ +/* $Id: eqn.c,v 1.53 2014/10/12 20:08:58 schwarze Exp $ */ /* * Copyright (c) 2011, 2014 Kristaps Dzonsons + * Copyright (c) 2014 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 @@ -486,12 +487,21 @@ eqn_tok_parse(struct eqn_node *ep, char **p) { const char *start; size_t i, sz; + int quoted; if (NULL != p) *p = NULL; + quoted = ep->data[ep->cur] == '"'; + if (NULL == (start = eqn_nexttok(ep, &sz))) return(EQN_TOK_EOF); + + if (quoted) { + if (p != NULL) + *p = mandoc_strndup(start, sz); + return(EQN_TOK__MAX); + } for (i = 0; i < EQN_TOK__MAX; i++) { if (NULL == eqn_toks[i])