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/LexMySQL.cxx | |
parent | 78855ccfe1cda5f920bfa981b4199f94e4c1b789 (diff) | |
download | scintilla-mirror-247442c9392d8626217c3c670d9b2ced7f8378f6.tar.gz |
Mark local functions in lexers as static.
Diffstat (limited to 'lexers/LexMySQL.cxx')
-rw-r--r-- | lexers/LexMySQL.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexMySQL.cxx b/lexers/LexMySQL.cxx index 951c3e3c3..4609619f4 100644 --- a/lexers/LexMySQL.cxx +++ b/lexers/LexMySQL.cxx @@ -331,7 +331,7 @@ static bool IsStreamCommentStyle(int style) * Code copied from StyleContext and modified to work here. Should go into Accessor as a * companion to Match()... */ -bool MatchIgnoreCase(Accessor &styler, Sci_Position currentPos, const char *s) +static bool MatchIgnoreCase(Accessor &styler, Sci_Position currentPos, const char *s) { for (Sci_Position n = 0; *s; n++) { |