diff options
author | XhmikosR <xhmikosr@gmail.com> | 2016-12-04 18:20:31 +0200 |
---|---|---|
committer | XhmikosR <xhmikosr@gmail.com> | 2016-12-04 18:24:16 +0200 |
commit | 4b604e07bbbf07d3d5ad04e65f0cef56959e3807 (patch) | |
tree | 44a5924e0ef508167b285c8016e6394992153817 /scintilla/scripts | |
parent | a3ee58329361322b321ee2a708e793b1a5e5729a (diff) | |
download | notepad2-mod-master.zip notepad2-mod-master.tar.gz notepad2-mod-master.tar.bz2 |
Update Scintilla to v3.7.1.HEADorigin/masterorigin/HEADmaster
Diffstat (limited to 'scintilla/scripts')
-rw-r--r-- | scintilla/scripts/HeaderCheck.py | 3 | ||||
-rw-r--r-- | scintilla/scripts/HeaderOrder.txt | 2 |
2 files changed, 4 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") diff --git a/scintilla/scripts/HeaderOrder.txt b/scintilla/scripts/HeaderOrder.txt index fdbb3a1..98efd30 100644 --- a/scintilla/scripts/HeaderOrder.txt +++ b/scintilla/scripts/HeaderOrder.txt @@ -5,6 +5,7 @@ // C standard library #include <stddef.h> #include <stdlib.h> +#include <stdint.h> #include <string.h> #include <stdio.h> #include <stdarg.h> @@ -70,6 +71,7 @@ // include #include "Platform.h" +#include "Sci_Position.h" #include "ILexer.h" #include "Scintilla.h" #include "ScintillaWidget.h" |