diff options
Diffstat (limited to 'scintilla/scripts/HeaderCheck.py')
-rw-r--r-- | scintilla/scripts/HeaderCheck.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scintilla/scripts/HeaderCheck.py b/scintilla/scripts/HeaderCheck.py index 6916fe3..e36ffa1 100644 --- a/scintilla/scripts/HeaderCheck.py +++ b/scintilla/scripts/HeaderCheck.py @@ -32,7 +32,8 @@ def ExtractHeaders(filename): def CheckFiles(root): # Find all the lexer source code files - filePaths = glob.glob(root + "/src/*.cxx") + filePaths = glob.glob(root + "/include/*.h") + filePaths += glob.glob(root + "/src/*.cxx") SortListInsensitive(filePaths) filePaths += glob.glob(root + "/lexlib/*.cxx") filePaths += glob.glob(root + "/lexers/*.cxx") |