diff options
Diffstat (limited to 'lexers/LexPB.cxx')
-rw-r--r-- | lexers/LexPB.cxx | 2 |
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++) |