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 | d880e3f614269ae45daad0b97d6646b9135649a9 (patch) | |
tree | b15ea1555f70fef8fbd7e0151290b6723ec1b42c /lexers/LexMySQL.cxx | |
parent | 7597f614ea4c81b9ef88ffaaeaf81bda6984d920 (diff) | |
download | scintilla-mirror-d880e3f614269ae45daad0b97d6646b9135649a9.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++) { |