summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Nevins <jacobn@chiark.greenend.org.uk>2008-11-23 17:41:44 +0000
committerJacob Nevins <jacobn@chiark.greenend.org.uk>2008-11-23 17:41:44 +0000
commit5e7a3a5b1bbaccb7ce7d61bb9bc4654924135dfb (patch)
treefff4b96bf6b82d21642c9a3409e511a0467952a0
parent8bfb2c177992712467fe7ce994fac518d713c3ad (diff)
downloadhalibut-5e7a3a5b1bbaccb7ce7d61bb9bc4654924135dfb.zip
halibut-5e7a3a5b1bbaccb7ce7d61bb9bc4654924135dfb.tar.gz
halibut-5e7a3a5b1bbaccb7ce7d61bb9bc4654924135dfb.tar.bz2
halibut-5e7a3a5b1bbaccb7ce7d61bb9bc4654924135dfb.tar.xz
Extend r8309 to try to ensure that single-quote/apostrophe characters in code
contexts get output usefully in the face of UTF-8 *roff implementations. Works on Debian-derived distributions (and hence along with r8309 should fix #496063), but I'm slightly worried about portability as I've used a named character "\(aq" which doesn't appear in the "classic" reference CS TR #54. [originally from svn r8321] [r8309 == 73e8c7d1b4ac77ec1b5acc700cb3af277a150bcf]
-rw-r--r--bk_man.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/bk_man.c b/bk_man.c
index 204d145..1433dfd 100644
--- a/bk_man.c
+++ b/bk_man.c
@@ -217,7 +217,7 @@ paragraph *man_config_filename(char *filename)
#define QUOTE_INITCTRL 1 /* quote initial . and ' on a line */
#define QUOTE_QUOTES 2 /* quote double quotes by doubling them */
-#define QUOTE_LITHYPHENS 4 /* don't convert hyphens into \(hy */
+#define QUOTE_LITERAL 4 /* defeat special meaning of `, ', - in troff */
void man_backend(paragraph *sourceform, keywordlist *keywords,
indexdata *idx, void *unused) {
@@ -476,17 +476,22 @@ static int man_convert(wchar_t const *s, int maxlen,
*/
rdaddc(&out, '\\');
rdaddc(&out, '&');
- } else if (*q == '`' || *q == ' ') {
+ }
+ if (*q == '`' || *q == ' ') {
/* Quote backticks and nonbreakable spaces always. */
rdaddc(&out, '\\');
} else if (*q == '\\') {
/* Turn backslashes into \e. */
rdaddsc(&out, "\\e");
continue;
- } else if (*q == '-' && !(quote_props & QUOTE_LITHYPHENS)) {
+ } else if (*q == '-' && !(quote_props & QUOTE_LITERAL)) {
/* Turn nonbreakable hyphens into \(hy. */
rdaddsc(&out, "\\(hy");
continue;
+ } else if (*q == '\'' && (quote_props & QUOTE_LITERAL)) {
+ /* Try to preserve literal U+0027 */
+ rdaddsc(&out, "\\(aq"); /* "apostrophe quote" */
+ continue;
} else if (*q == '"' && (quote_props & QUOTE_QUOTES)) {
/*
* Double quote within double quotes. Quote it by
@@ -587,7 +592,7 @@ static int man_rdaddwc(rdstringc *rs, word *text, word *end,
if (towordstyle(text->type) == word_Code ||
towordstyle(text->type) == word_WeakCode)
- quote_props |= QUOTE_LITHYPHENS;
+ quote_props |= QUOTE_LITERAL;
if (removeattr(text->type) == word_Normal) {
charset_state s2 = *state;
@@ -659,7 +664,7 @@ static void man_codepara(FILE *fp, word *text, int charset) {
for (; text; text = text->next) if (text->type == word_WeakCode) {
char *c;
wchar_t *t, *e;
- int quote_props = QUOTE_INITCTRL | QUOTE_LITHYPHENS;
+ int quote_props = QUOTE_INITCTRL | QUOTE_LITERAL;
t = text->text;
if (text->next && text->next->type == word_Emph) {