diff options
-rw-r--r-- | src/LexGen.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/LexGen.py b/src/LexGen.py index 571332e6e..c73699c58 100644 --- a/src/LexGen.py +++ b/src/LexGen.py @@ -219,7 +219,7 @@ def ciCompare(a,b): def ciKey(a): return a.lower() - + def sortListInsensitive(l): try: # Try key function l.sort(key=ciKey) @@ -255,9 +255,9 @@ def RegenerateAll(): sortListInsensitive(documentProperties) propertiesHTML = [] for k in documentProperties: - propertiesHTML.append("\t<tr>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" % + propertiesHTML.append("\t<tr>\n\t<td>%s</td>\n\t<td>%s</td>\n\t</tr>" % (k, propertyDocuments[k])) - + # Find all the SciTE properties files otherProps = ["abbrev.properties", "Embedded.properties", "SciTEGlobal.properties", "SciTE.properties"] if os.path.exists(root + "scite"): @@ -275,7 +275,6 @@ def RegenerateAll(): # extracted from the Scintilla source ZIP (typically created on # Windows). Regenerate(root + "scintilla/gtk/makefile", "#", LF, lexFiles) - Regenerate(root + "scintilla/gtk/scintilla.mak", "#", NATIVE, lexFiles) Regenerate(root + "scintilla/macosx/makefile", "#", LF, lexFiles) if os.path.exists(root + "scite"): Regenerate(root + "scite/win32/makefile", "#", NATIVE, lexFiles, propFiles) |