diff options
author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-29 16:08:52 +1000 |
---|---|---|
committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-09-29 16:08:52 +1000 |
commit | 7597f614ea4c81b9ef88ffaaeaf81bda6984d920 (patch) | |
tree | 761f10f606131ff7ae17046f8037f61c08a074c8 /src/Document.cxx | |
parent | 9442fdc0319daf74c48e9aa385a16a0482903765 (diff) | |
download | scintilla-mirror-7597f614ea4c81b9ef88ffaaeaf81bda6984d920.tar.gz |
Mark local functions as static.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r-- | src/Document.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx index 956664103..9201e162f 100644 --- a/src/Document.cxx +++ b/src/Document.cxx @@ -2141,7 +2141,7 @@ int Document::WordPartRight(int pos) { return pos; } -bool IsLineEndChar(char c) { +static bool IsLineEndChar(char c) { return (c == '\n' || c == '\r'); } |