Commit a73d8383 authored by Jack Jansen's avatar Jack Jansen

ScannerPREUH3.initpatterns() should call Scanner.initpatterns() so the

new comment patterns get included.
parent 3aeac933
......@@ -558,6 +558,7 @@ if missing: raise "Missing Types"
class Scanner_PreUH3(Scanner):
"""Scanner for Universal Headers before release 3"""
def initpatterns(self):
Scanner.initpatterns(self)
self.head_pat = "^extern pascal[ \t]+" # XXX Mac specific!
self.tail_pat = "[;={}]"
self.type_pat = "pascal[ \t\n]+\(<type>[a-zA-Z0-9_ \t]*[a-zA-Z0-9_]\)[ \t\n]+"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment