summaryrefslogtreecommitdiff
path: root/source/html/css-parse.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-02-26 15:16:34 +0100
committerRobin Watts <robin.watts@artifex.com>2015-03-24 13:42:44 +0000
commite0f638b398b2362f5843ea0c1907f678cfa8e278 (patch)
tree0f771d162c7f2c18f18bb12c8be86cdca06aaaeb /source/html/css-parse.c
parent4b3c02180d49403a4e477e494ed233ac2c672bd8 (diff)
downloadmupdf-e0f638b398b2362f5843ea0c1907f678cfa8e278.tar.xz
Don't pass interpreter context to pdf_processor opcode callbacks.
Update buffer and filter processors. Filter both colors and stroke states. Move OCG hiding logic into interpreter.
Diffstat (limited to 'source/html/css-parse.c')
-rw-r--r--source/html/css-parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/html/css-parse.c b/source/html/css-parse.c
index e3ddd48f..91958a98 100644
--- a/source/html/css-parse.c
+++ b/source/html/css-parse.c
@@ -414,7 +414,7 @@ restart:
{
buf->color = (a << 20) | (b << 12) | (c << 4);
}
- sprintf(buf->string, "%06x", buf->color); // XXX
+ sprintf(buf->string, "%06x", buf->color);
return CSS_COLOR;
colorerror:
fz_css_error(buf, "invalid color");