summaryrefslogtreecommitdiffstats
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-11-14 11:58:36 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-11-14 11:58:36 +0000
commite97c3f3af85655664c79a59519735abc8776f110 (patch)
tree876ffe97fcbba367f72e19d8622517f5caa554c1 /html.c
parent627a4caec7519aa0479398c3e48bdd78999d2fc8 (diff)
downloadmandoc-e97c3f3af85655664c79a59519735abc8776f110.tar.gz
Fixed \c handling in -Thtml.
Diffstat (limited to 'html.c')
-rw-r--r--html.c14
1 files changed, 9 insertions, 5 deletions
diff --git a/html.c b/html.c
index 7a18c976..57316063 100644
--- a/html.c
+++ b/html.c
@@ -91,7 +91,7 @@ extern int getsubopt(char **, char * const *, char **);
static void print_spec(struct html *, const char *, size_t);
static void print_res(struct html *, const char *, size_t);
static void print_ctag(struct html *, enum htmltag);
-static void print_encode(struct html *, const char *);
+static int print_encode(struct html *, const char *);
void *
@@ -220,14 +220,16 @@ print_res(struct html *h, const char *p, size_t len)
}
-static void
+static int
print_encode(struct html *h, const char *p)
{
size_t sz;
- int len;
+ int len, nospace;
const char *seq;
enum roffdeco deco;
+ nospace = 0;
+
for (; *p; p++) {
sz = strcspn(p, "\\<>&");
@@ -264,8 +266,10 @@ print_encode(struct html *h, const char *p)
p += len - 1;
if (DECO_NOSPACE == deco && '\0' == *(p + 1))
- h->flags |= HTML_NOSPACE;
+ nospace = 1;
}
+
+ return(nospace);
}
@@ -296,7 +300,7 @@ print_otag(struct html *h, enum htmltag tag,
for (i = 0; i < sz; i++) {
printf(" %s=\"", htmlattrs[p[i].key]);
assert(p->val);
- print_encode(h, p[i].val);
+ (void)print_encode(h, p[i].val);
putchar('\"');
}
putchar('>');