diff options
author | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-09-18 20:35:57 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@centraldogma> | 2011-09-18 20:35:57 +0200 |
commit | 6152c8d41d889d28175dc23566920e05f6a3e179 (patch) | |
tree | e1880c452f761dcc83bbc9e20edd3e0646292c32 /sys/src/cmd/page.c | |
parent | 35fcb73f86518e00fb002c98d0d0a39eef9209fa (diff) |
html2ms: rewrite from scratch
Diffstat (limited to 'sys/src/cmd/page.c')
-rw-r--r-- | sys/src/cmd/page.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/page.c b/sys/src/cmd/page.c index 298ebacd7..eb2e761c1 100644 --- a/sys/src/cmd/page.c +++ b/sys/src/cmd/page.c @@ -626,7 +626,7 @@ popenfile(Page *p) else if(cistrncmp(buf, "<?xml", 5) == 0 || cistrncmp(buf, "<!DOCTYPE", 9) == 0 || cistrncmp(buf, "<HTML", 5) == 0){ - p->data = "htmlfmt -c utf8 | lp -dstdout"; + p->data = "html2ms | troff -ms | lp -dstdout"; p->open = popengs; } else if(memcmp(buf, "\xF7\x02\x01\x83\x92\xC0\x1C;", 8) == 0){ |