diff options
author | nyamatongwe <devnull@localhost> | 2003-12-22 22:06:04 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-12-22 22:06:04 +0000 |
commit | 0c5412d080d4f07938a6841eb08876580f2162ce (patch) | |
tree | 57a29261e8cd7c27310083960c2ca2aa2b9f7920 /include | |
parent | 2f086ee3f65adab8d940212cd7981d7c3a75fc29 (diff) | |
download | scintilla-mirror-0c5412d080d4f07938a6841eb08876580f2162ce.tar.gz |
Support for Intel ifort and absoft Fortran compiler error messages.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 2 | ||||
-rw-r--r-- | include/Scintilla.iface | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 57f10bd5b..44d5dcdcd 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -304,6 +304,8 @@ #define SCE_ERR_PHP 14 #define SCE_ERR_ELF 15 #define SCE_ERR_IFC 16 +#define SCE_ERR_IFORT 17 +#define SCE_ERR_ABSF 18 #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 831e0393d..6c5a48f44 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1968,6 +1968,8 @@ val SCE_ERR_DIFF_MESSAGE=13 val SCE_ERR_PHP=14 val SCE_ERR_ELF=15 val SCE_ERR_IFC=16 +val SCE_ERR_IFORT=17 +val SCE_ERR_ABSF=18 # Lexical states for SCLEX_BATCH lex Batch=SCLEX_BATCH SCE_BAT_ val SCE_BAT_DEFAULT=0 |