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/LexSML.cxx | |
parent | 7597f614ea4c81b9ef88ffaaeaf81bda6984d920 (diff) | |
download | scintilla-mirror-d880e3f614269ae45daad0b97d6646b9135649a9.tar.gz |
Mark local functions in lexers as static.
Diffstat (limited to 'lexers/LexSML.cxx')
-rw-r--r-- | lexers/LexSML.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexSML.cxx b/lexers/LexSML.cxx index c380ac18b..76cfde061 100644 --- a/lexers/LexSML.cxx +++ b/lexers/LexSML.cxx @@ -33,7 +33,7 @@ inline int issmld(int c) {return isdigit(c) || c == '_';} using namespace Scintilla; #endif -void ColouriseSMLDoc( +static void ColouriseSMLDoc( Sci_PositionU startPos, Sci_Position length, int initStyle, WordList *keywordlists[], @@ -205,7 +205,7 @@ void ColouriseSMLDoc( sc.Complete(); } -void FoldSMLDoc( +static void FoldSMLDoc( Sci_PositionU, Sci_Position, int, WordList *[], |