diff options
-rw-r--r-- | include/SciLexer.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 | ||||
-rw-r--r-- | lexers/LexOthers.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 82a39904c..44043fe6e 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -477,7 +477,7 @@ #define SCE_ERR_TIDY 19 #define SCE_ERR_JAVA_STACK 20 #define SCE_ERR_VALUE 21 -#define SCE_ERR_FROM 22 +#define SCE_ERR_GCC_INCLUDED_FROM 22 #define SCE_BAT_DEFAULT 0 #define SCE_BAT_COMMENT 1 #define SCE_BAT_WORD 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index cb6c0e632..670d3937f 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2936,7 +2936,7 @@ val SCE_ERR_ABSF=18 val SCE_ERR_TIDY=19 val SCE_ERR_JAVA_STACK=20 val SCE_ERR_VALUE=21 -val SCE_ERR_FROM=22 +val SCE_ERR_GCC_INCLUDED_FROM=22 # Lexical states for SCLEX_BATCH lex Batch=SCLEX_BATCH SCE_BAT_ val SCE_BAT_DEFAULT=0 diff --git a/lexers/LexOthers.cxx b/lexers/LexOthers.cxx index d73b86f00..829978180 100644 --- a/lexers/LexOthers.cxx +++ b/lexers/LexOthers.cxx @@ -945,7 +945,7 @@ static int RecogniseErrorListLine(const char *lineBuffer, unsigned int lengthLin } else if (strstart(lineBuffer, "In file included from ") || strstart(lineBuffer, " from ")) { // GCC showing include path to following error - return SCE_ERR_FROM; + return SCE_ERR_GCC_INCLUDED_FROM; } else { // Look for one of the following formats: // GCC: <filename>:<line>:<message> |