diff options
Diffstat (limited to 'mandoc-db.c')
-rw-r--r-- | mandoc-db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mandoc-db.c b/mandoc-db.c index 1a3db9e8..72ef1448 100644 --- a/mandoc-db.c +++ b/mandoc-db.c @@ -458,14 +458,14 @@ pmdoc_Fd(MDOC_ARGS) */ start = n->string; - if ('<' == *start) + if ('<' == *start || '"' == *start) start++; if (0 == (sz = strlen(start))) return; end = &start[(int)sz - 1]; - if ('>' == *end) + if ('>' == *end || '"' == *end) end--; nil = '\0'; |