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

svn: r23079
This commit is contained in:
Doug Blank 2013-09-10 16:49:29 +00:00
parent dcd006b8e6
commit a584c5dfed

View File

@ -752,6 +752,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]