diff options
author | rsc <devnull@localhost> | 2004-04-20 02:03:38 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-04-20 02:03:38 +0000 |
commit | a0f1e21ff939612898d63ae2245e47dffc1a8153 (patch) | |
tree | 581f62db3bad2c54d60cb54b6e577787f55071af /include | |
parent | e637c944febf271252e59742aa108d6e0a527eb7 (diff) | |
download | plan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.tar.gz plan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.tar.bz2 plan9port-a0f1e21ff939612898d63ae2245e47dffc1a8153.zip |
make things work on SunOS
Diffstat (limited to 'include')
-rw-r--r-- | include/html.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/html.h b/include/html.h index 2fdca445..0bcf3b5c 100644 --- a/include/html.h +++ b/include/html.h @@ -259,7 +259,8 @@ struct Ispacer // Item state flags and value fields enum { - IFbrk = 0x80000000, // forced break before this item +// IFbrk = 0x80000000, // forced break before this item +#define IFbrk 0x80000000 /* too big for sun */ IFbrksp = 0x40000000, // add 1 line space to break (IFbrk set too) IFnobrk = 0x20000000, // break not allowed before this item IFcleft = 0x10000000, // clear left floats (IFbrk set too) |