diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-17 08:41:37 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-17 08:41:37 +0100 |
commit | fc5d174cd475c8f2236ea644d63e6b309e41b928 (patch) | |
tree | 72dec2aa55a40b448547a2db77055bb02a172bdd /filter | |
parent | ed0f143ca6508817001319c6668602a07fe421dd (diff) | |
download | mupdf-fc5d174cd475c8f2236ea644d63e6b309e41b928.tar.xz |
text clip mode. split text content streams. text extraction api.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/faxd.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/filter/faxd.c b/filter/faxd.c index 62793dab..d8686a08 100644 --- a/filter/faxd.c +++ b/filter/faxd.c @@ -431,6 +431,10 @@ eol: goto loop; rtc: + i = (32 - fax->bidx) / 8; + while (i-- && in->rp > in->bp) + in->rp --; + out->eof = 1; return fz_iodone; } |