diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-09-26 18:28:10 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2012-09-26 18:28:10 +0200 |
commit | 2b7330765aeb322017516ef50f9343cbdda07a95 (patch) | |
tree | f925e0017b26b434155f11ae187dfcf0296ac405 /sys/src/cmd/mothra/rdhtml.c | |
parent | 03f2668d68ddce6966fdc3f13bd085bced5ff48d (diff) |
mothra: dont make all images into links (only in mothmode)
Diffstat (limited to 'sys/src/cmd/mothra/rdhtml.c')
-rw-r--r-- | sys/src/cmd/mothra/rdhtml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/mothra/rdhtml.c b/sys/src/cmd/mothra/rdhtml.c index 8405244a1..bf7a5ee00 100644 --- a/sys/src/cmd/mothra/rdhtml.c +++ b/sys/src/cmd/mothra/rdhtml.c @@ -144,7 +144,7 @@ void pl_htmloutput(Hglob *g, int nsp, char *s, Field *field){ } } plrtstr(&g->dst->text, space, indent, f->font, strdup(s), - (g->state->link[0] || g->state->image[0]) ? PL_HOT : 0, ap); + g->state->link[0] ? PL_HOT : 0, ap); g->para=0; g->linebrk=0; g->dst->changed=1; |