Ignore meaningless @IDENT@ on CONT or CONC line as detailed at http://www.tamurajones.net/IdentCONT.xhtml

svn: r23081
This commit is contained in:
Doug Blank 2013-09-10 16:52:03 +00:00
parent ff89425e50
commit 146be99876

View File

@ -753,6 +753,13 @@ class Lexer(object):
# line is now [None, alphanum+pointer_string, rest]
tag = '@' + line[1] + '@'
line_value = line[2]
## Ignore meaningless @IDENT@ on CONT or CONC line
## as detailed at http://www.tamurajones.net/IdentCONT.xhtml
if (line_value.lstrip().startswith("CONT ") or
line_value.lstrip().startswith("CONC ")):
line = line_value.lstrip().partition(' ')
tag = line[0]
line_value = line[2]
else:
line = line.partition(' ')
tag = line[0]