diff options
| author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-29 16:09:34 +1000 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-29 16:09:34 +1000 |
| commit | 247442c9392d8626217c3c670d9b2ced7f8378f6 (patch) | |
| tree | 4e2e4211196264c2238b108068f414294ccd33b1 /lexers/LexECL.cxx | |
| parent | 78855ccfe1cda5f920bfa981b4199f94e4c1b789 (diff) | |
| download | scintilla-mirror-247442c9392d8626217c3c670d9b2ced7f8378f6.tar.gz | |
Mark local functions in lexers as static.
Diffstat (limited to 'lexers/LexECL.cxx')
| -rw-r--r-- | lexers/LexECL.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexECL.cxx b/lexers/LexECL.cxx index 32dc09b43..7c49be1be 100644 --- a/lexers/LexECL.cxx +++ b/lexers/LexECL.cxx @@ -388,7 +388,7 @@ static bool IsStreamCommentStyle(int style) { style == SCE_ECL_COMMENTDOCKEYWORDERROR; } -bool MatchNoCase(Accessor & styler, Sci_PositionU & pos, const char *s) { +static bool MatchNoCase(Accessor & styler, Sci_PositionU & pos, const char *s) { Sci_Position i=0; for (; *s; i++) { char compare_char = tolower(*s); |
