Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2022-11-01 14:37:00 +0300
committerJon Turney <jon.turney@dronecode.org.uk>2022-11-12 17:09:08 +0300
commit2521dd48d820326cfa2c3efa8bfde19dec7109e5 (patch)
tree6659980ff43716be56c7390192085b97712c60e6 /newlib/doc
parent8b6c4249e2a592ab69d4fca299a3466815aed951 (diff)
makedocbook: Drop stray semicolons
This isn't written in C :)
Diffstat (limited to 'newlib/doc')
-rwxr-xr-xnewlib/doc/makedocbook.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/doc/makedocbook.py b/newlib/doc/makedocbook.py
index 57cd23bfd..8a3c31ca6 100755
--- a/newlib/doc/makedocbook.py
+++ b/newlib/doc/makedocbook.py
@@ -449,7 +449,7 @@ command_dispatch_dict = {
# apply transformations which are easy to do in-place
def line_markup_convert(p):
- s = p;
+ s = p
# process the texinfo escape for an @
s = s.replace('@@', '@')
@@ -582,7 +582,7 @@ def t_eof(t):
return None
t.type = 'EOF'
- t.lexer.at_eof = True;
+ t.lexer.at_eof = True
return t