big rename

This commit is contained in:
Araq
2014-08-27 23:42:51 +02:00
parent 15a7bcc89f
commit 11b6958755
98 changed files with 2491 additions and 2341 deletions

View File

@@ -15,7 +15,7 @@ var links = 0 # count the number of links
var filename = addFileExt(ParamStr(1), "html")
var s = newFileStream(filename, fmRead)
if s == nil: quit("cannot open the file " & filename)
var x: TXmlParser
var x: XmlParser
open(x, s, filename)
next(x) # get first event
block mainLoop:

View File

@@ -10,7 +10,7 @@ if paramCount() < 1:
var filename = addFileExt(paramStr(1), "html")
var s = newFileStream(filename, fmRead)
if s == nil: quit("cannot open the file " & filename)
var x: TXmlParser
var x: XmlParser
open(x, s, filename)
while true:
x.next()