aboutsummaryrefslogtreecommitdiff
path: root/src/html.hh
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-02 22:47:36 +0100
committerjcid <devnull@localhost>2007-11-02 22:47:36 +0100
commit82433031dd79fb3332f41d6873ebd03b762d8502 (patch)
treefc4ec4a77cd776aad1a86be043fd816ba440c73a /src/html.hh
parenta98cd575bbb83fcf726c99741b8d97546696a16e (diff)
Hooked vertical scrolling to the mouse wheel.
Diffstat (limited to 'src/html.hh')
-rw-r--r--src/html.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/html.hh b/src/html.hh
index 75dc1b49..47b1ea42 100644
--- a/src/html.hh
+++ b/src/html.hh
@@ -252,9 +252,9 @@ struct _DilloHtml {
Dstr *Stash;
bool_t StashSpace;
- char *SPCBuf; /* Buffer for white space */
+ char *SPCBuf; /* Buffer for white space */
- int pre_column; /* current column, used in PRE tags with tabs */
+ int pre_column; /* current column, used in PRE tags with tabs */
bool_t PreFirstChar; /* used to skip the first CR or CRLF in PRE tags */
bool_t PrevWasCR; /* Flag to help parsing of "\r\n" in PRE tags */
bool_t PrevWasOpenTag; /* Flag to help deferred parsing of white space */
@@ -263,7 +263,7 @@ struct _DilloHtml {
bool_t ReqTagClose; /* Flag to help handling bad-formed HTML */
bool_t CloseOneTag; /* Flag to help Html_tag_cleanup_at_close() */
bool_t TagSoup; /* Flag to enable the parser's cleanup functions */
- char *NameVal; /* used for validation of "NAME" and "ID" in <A> */
+ char *NameVal; /* used for validation of "NAME" and "ID" in <A> */
/* element counters: used for validation purposes */
uchar_t Num_HTML, Num_HEAD, Num_BODY, Num_TITLE;