aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexMySQL.cxx
diff options
context:
space:
mode:
authorNeil Hodgson <nyamatongwe@gmail.com>2015-09-29 16:09:34 +1000
committerNeil Hodgson <nyamatongwe@gmail.com>2015-09-29 16:09:34 +1000
commitd880e3f614269ae45daad0b97d6646b9135649a9 (patch)
treeb15ea1555f70fef8fbd7e0151290b6723ec1b42c /lexers/LexMySQL.cxx
parent7597f614ea4c81b9ef88ffaaeaf81bda6984d920 (diff)
downloadscintilla-mirror-d880e3f614269ae45daad0b97d6646b9135649a9.tar.gz
Mark local functions in lexers as static.
Diffstat (limited to 'lexers/LexMySQL.cxx')
-rw-r--r--lexers/LexMySQL.cxx2
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++)
{