From 5a4f1248c39c0692eb2d13873fcc82ac00b6e0c0 Mon Sep 17 00:00:00 2001 From: calvin Date: Wed, 1 Feb 2006 18:56:04 +0000 Subject: [PATCH] cleanup git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3028 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/HtmlParser/htmlsax.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/linkcheck/HtmlParser/htmlsax.h b/linkcheck/HtmlParser/htmlsax.h index 3474761b..a5bd3e11 100644 --- a/linkcheck/HtmlParser/htmlsax.h +++ b/linkcheck/HtmlParser/htmlsax.h @@ -48,11 +48,11 @@ typedef struct { unsigned int pos; /* line counter, counting from one */ unsigned int lineno; - /* last value of line counter */ - unsigned int last_lineno; /* column counter, counting from zero */ unsigned int column; - /* last value of column counter */ + /* value of line counter before the current token */ + unsigned int last_lineno; + /* value of column counter before the current token */ unsigned int last_column; /* input buffer of lexer, must be deleted when the parsing stops */ void* lexbuf;