diff options
author | Neil <nyamatongwe@gmail.com> | 2021-08-24 11:39:57 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-08-24 11:39:57 +1000 |
commit | dc0398d650e75efe9641f0c48d630f2c2027281a (patch) | |
tree | 83819a98c36c4b1c6a011d9524e26eb5b87da3d3 /scripts | |
parent | f756e89f53b407432c7db7c4134bfdb8af94d964 (diff) | |
download | scintilla-mirror-dc0398d650e75efe9641f0c48d630f2c2027281a.tar.gz |
Remove line end white space.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/CheckMentioned.py | 2 | ||||
-rwxr-xr-x | scripts/HFacer.py | 2 | ||||
-rw-r--r-- | scripts/LexGen.py | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/scripts/CheckMentioned.py b/scripts/CheckMentioned.py index d2c71dcbe..157acb31e 100644 --- a/scripts/CheckMentioned.py +++ b/scripts/CheckMentioned.py @@ -205,7 +205,7 @@ def checkDocumentation(): print(val, "<-", name, ";;", valOfName) except KeyError: print("***", val, "<-", name) - + for name in sccToValue.keys(): if name not in ["SCI_OPTIONAL_START", "SCI_LEXER_START"] and name not in docs: print(f"Unknown {name}") diff --git a/scripts/HFacer.py b/scripts/HFacer.py index 0a4f3259c..cc8467b2c 100755 --- a/scripts/HFacer.py +++ b/scripts/HFacer.py @@ -49,7 +49,7 @@ def RegenerateAll(root, showMaxID): #~ except ValueError: #~ pass #~ for v in valuesUnused: - #~ prev = valueToName.get(v-1, "") + #~ prev = valueToName.get(v-1, "") #~ print(v, prev) if __name__ == "__main__": diff --git a/scripts/LexGen.py b/scripts/LexGen.py index a862b6288..fba9f6631 100644 --- a/scripts/LexGen.py +++ b/scripts/LexGen.py @@ -3,7 +3,7 @@ # Released to the public domain. # Update Scintilla files. -# Update version numbers and modification dates in documentation and header files. +# Update version numbers and modification dates in documentation and header files. # Update make dependencies. # Requires Python 3.6 or later @@ -58,7 +58,7 @@ def UpdateVersionNumbers(sci, root): 0) def RegenerateAll(rootDirectory): - + root = pathlib.Path(rootDirectory) scintillaBase = root.resolve() |