diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2014-11-18 16:09:40 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2014-12-03 12:25:52 +0100 |
commit | f18636e80edab0dadd07917ea26ec4c18102b99a (patch) | |
tree | 36bc9ef859f6d1de33b18da7e9a2f35be0fa62e6 /source/html/layout.c | |
parent | d88d131bae7d516b1b8ad9c94706d0813bbb1497 (diff) | |
download | mupdf-f18636e80edab0dadd07917ea26ec4c18102b99a.tar.xz |
html: Cleanups.
Diffstat (limited to 'source/html/layout.c')
-rw-r--r-- | source/html/layout.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source/html/layout.c b/source/html/layout.c index b5a22557..001e15e4 100644 --- a/source/html/layout.c +++ b/source/html/layout.c @@ -1,9 +1,6 @@ #include "mupdf/html.h" -#define L LEFT -#define R RIGHT -#define T TOP -#define B BOTTOM +enum { T, R, B, L }; static const char *default_css = "html,address,blockquote,body,dd,div,dl,dt,h1,h2,h3,h4,h5,h6,ol,p,ul,center,hr,pre{display:block}" |