summaryrefslogtreecommitdiffstats
path: root/term.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-02-24 13:46:54 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-02-24 13:46:54 +0000
commit38fefdf005d8237391f4aabfb145c4a96d930b8b (patch)
tree3140d1ac71c9d4d0d8ed643bc9937302d4cf9379 /term.c
parentc8bf126a0b893c247fa4ec7b271fa51308fe257f (diff)
downloadmandoc-38fefdf005d8237391f4aabfb145c4a96d930b8b.tar.gz
Character-encoding checked for all text (arguments/values).
Diffstat (limited to 'term.c')
-rw-r--r--term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/term.c b/term.c
index 28089e2d..8ba4beae 100644
--- a/term.c
+++ b/term.c
@@ -1054,7 +1054,7 @@ termp_sq_pre(DECL_ARGS)
if (MDOC_BODY != node->type)
return(1);
- word(p, "`");
+ word(p, "\'");
p->flags |= TERMP_NOSPACE;
return(1);
}