diff options
author | nyamatongwe <unknown> | 2006-12-11 12:19:16 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-12-11 12:19:16 +0000 |
commit | c71a44fb35e26d8505d58814b0c0b0666b4f0ce2 (patch) | |
tree | b46a08617e0b5c9b9be3de0d59bb032097c7e8d8 /src/LexGen.py | |
parent | 9e6cd4dbe1cb31d07bfd04d8b2a175ff4dad2064 (diff) | |
download | scintilla-mirror-c71a44fb35e26d8505d58814b0c0b0666b4f0ce2.tar.gz |
Updated Python version needed.
Diffstat (limited to 'src/LexGen.py')
-rw-r--r-- | src/LexGen.py | 6 |
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() |