aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexGen.py
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2006-12-11 12:19:16 +0000
committernyamatongwe <devnull@localhost>2006-12-11 12:19:16 +0000
commit5e3995c101f815376f9eee307fb599b05a07daa5 (patch)
treeb46a08617e0b5c9b9be3de0d59bb032097c7e8d8 /src/LexGen.py
parent7f5ddf9243e5ef1c73b013b474a993566f565921 (diff)
downloadscintilla-mirror-5e3995c101f815376f9eee307fb599b05a07daa5.tar.gz
Updated Python version needed.
Diffstat (limited to 'src/LexGen.py')
-rw-r--r--src/LexGen.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/LexGen.py b/src/LexGen.py
index 97a40b4b0..c4164b78a 100644
--- a/src/LexGen.py
+++ b/src/LexGen.py
@@ -4,7 +4,7 @@
# Regenerate the Scintilla and SciTE source files that list
# all the lexers and all the properties files.
# Should be run whenever a new lexer is added or removed.
-# Requires Python 2.1 or later
+# Requires Python 2.4 or later
# Most files are regenerated in place with templates stored in comments.
# The VS .NET project file is generated into a different file as the
# VS .NET environment will not retain comments when modifying the file.
@@ -159,7 +159,7 @@ def FindModules(lexFile):
l = l.replace("(", " ")
modules.append(l.split()[1])
return modules
-
+
knownIrregularProperties = [
"fold",
"styling.within.preprocessor",
@@ -237,5 +237,5 @@ def RegenerateAll():
Regenerate(root + "scite/src/SciTEProps.cxx", "//", NATIVE, lexerProperties, ids)
Generate(root + "scite/boundscheck/vcproj.gen",
root + "scite/boundscheck/SciTE.vcproj", "#", NATIVE, lexFiles)
-
+
RegenerateAll()