aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexers/LexPB.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
commit247442c9392d8626217c3c670d9b2ced7f8378f6 (patch)
tree4e2e4211196264c2238b108068f414294ccd33b1 /lexers/LexPB.cxx
parent78855ccfe1cda5f920bfa981b4199f94e4c1b789 (diff)
downloadscintilla-mirror-247442c9392d8626217c3c670d9b2ced7f8378f6.tar.gz
Mark local functions in lexers as static.
Diffstat (limited to 'lexers/LexPB.cxx')
-rw-r--r--lexers/LexPB.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexPB.cxx b/lexers/LexPB.cxx
index df9689b3c..49b8509d0 100644
--- a/lexers/LexPB.cxx
+++ b/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++)