makedocbook: Drop stray semicolons
This isn't written in C :)
This commit is contained in:
parent
8b6c4249e2
commit
2521dd48d8
|
@ -449,7 +449,7 @@ command_dispatch_dict = {
|
||||||
|
|
||||||
# apply transformations which are easy to do in-place
|
# apply transformations which are easy to do in-place
|
||||||
def line_markup_convert(p):
|
def line_markup_convert(p):
|
||||||
s = p;
|
s = p
|
||||||
|
|
||||||
# process the texinfo escape for an @
|
# process the texinfo escape for an @
|
||||||
s = s.replace('@@', '@')
|
s = s.replace('@@', '@')
|
||||||
|
@ -582,7 +582,7 @@ def t_eof(t):
|
||||||
return None
|
return None
|
||||||
|
|
||||||
t.type = 'EOF'
|
t.type = 'EOF'
|
||||||
t.lexer.at_eof = True;
|
t.lexer.at_eof = True
|
||||||
|
|
||||||
return t
|
return t
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue