aboutsummaryrefslogtreecommitdiff
path: root/include/html.h
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-04-08 19:36:35 +0000
committerrsc <devnull@localhost>2004-04-08 19:36:35 +0000
commit650deb79804a49d2dff37c9313fe96b846ad8063 (patch)
tree5498b7fe35a540a2e0fa55806434a5d3055eda2b /include/html.h
parenta67406e465169623421beba9072b213a8e75c423 (diff)
downloadplan9port-650deb79804a49d2dff37c9313fe96b846ad8063.tar.gz
plan9port-650deb79804a49d2dff37c9313fe96b846ad8063.tar.bz2
plan9port-650deb79804a49d2dff37c9313fe96b846ad8063.zip
Make libhtml, htmlfmt build.
Thanks to wkj for doing all the hard work.
Diffstat (limited to 'include/html.h')
-rw-r--r--include/html.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/html.h b/include/html.h
index 019ad732..2fdca445 100644
--- a/include/html.h
+++ b/include/html.h
@@ -190,7 +190,7 @@ enum {
struct Itext
{
- Item _item; // (with tag ==Itexttag)
+ Item item; // (with tag ==Itexttag)
Rune* s; // the characters
int fnt; // style*NumSize+size (see font stuff, below)
int fg; // Pixel (color) for text
@@ -200,7 +200,7 @@ struct Itext
struct Irule
{
- Item _item; // (with tag ==Iruletag)
+ Item item; // (with tag ==Iruletag)
uchar align; // alignment spec
uchar noshade; // if true, don't shade
int size; // size attr (rule height)
@@ -210,7 +210,7 @@ struct Irule
struct Iimage
{
- Item _item; // (with tag ==Iimagetag)
+ Item item; // (with tag ==Iimagetag)
Rune* imsrc; // image src url
int imwidth; // spec width (actual, if no spec)
int imheight; // spec height (actual, if no spec)
@@ -227,14 +227,14 @@ struct Iimage
struct Iformfield
{
- Item _item; // (with tag ==Iformfieldtag)
+ Item item; // (with tag ==Iformfieldtag)
Formfield* formfield;
};
struct Itable
{
- Item _item; // (with tag ==Itabletag)
+ Item item; // (with tag ==Itabletag)
Table* table;
};
@@ -253,7 +253,7 @@ struct Ifloat
struct Ispacer
{
- Item _item; // (with tag ==Ispacertag)
+ Item item; // (with tag ==Ispacertag)
int spkind; // ISPnull, etc.
};
@@ -611,7 +611,7 @@ extern int targetid(Rune* s);
extern Rune* targetname(int targid);
extern int validitems(Item* i);
-#pragma varargck type "I" Item*
+/* #pragma varargck type "I" Item* */
// Control print output
extern int warn;