summaryrefslogtreecommitdiffstats
path: root/scintilla/lexers/LexPB.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'scintilla/lexers/LexPB.cxx')
-rw-r--r--scintilla/lexers/LexPB.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla/lexers/LexPB.cxx b/scintilla/lexers/LexPB.cxx
index 73ad621..e967fd8 100644
--- a/scintilla/lexers/LexPB.cxx
+++ b/scintilla/lexers/LexPB.cxx
@@ -70,7 +70,7 @@ static inline bool IsAWordStart(const int ch)
return (ch < 0x80) && (isalnum(ch) || ch == '_');
}
-bool MatchUpperCase(Accessor &styler, Sci_Position pos, const char *s) //Same as styler.Match() but uppercase comparison (a-z,A-Z and space only)
+static bool MatchUpperCase(Accessor &styler, Sci_Position pos, const char *s) //Same as styler.Match() but uppercase comparison (a-z,A-Z and space only)
{
char ch;
for (Sci_Position i=0; *s; i++)