From f0148c2ecfc0c69c8b7c6a97915170ecb3aa0619 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sat, 31 Dec 2005 19:59:11 +0100 Subject: [PATCH] Keep struct sgml_parsing_state private to the parser --- src/dom/sgml/parser.c | 10 ++++++++++ src/dom/sgml/parser.h | 10 ---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/dom/sgml/parser.c b/src/dom/sgml/parser.c index 70903fc59..a0abe226a 100644 --- a/src/dom/sgml/parser.c +++ b/src/dom/sgml/parser.c @@ -19,6 +19,16 @@ #include "util/memory.h" +/* This holds info about a chunk of text being parsed. The SGML parser uses + * these to keep track of possible nested calls to parse_sgml(). This can be + * used to feed output of stuff like ECMAScripts document.write() from + *