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 | 78855ccfe1cda5f920bfa981b4199f94e4c1b789 (patch) | |
tree | e91ed0ba58fa7eaa26728c00747775f19f5150c1 /src/Document.cxx | |
parent | 5a602c005ebd25e6e678ceaff4ca6f0a912be2fa (diff) | |
download | scintilla-mirror-78855ccfe1cda5f920bfa981b4199f94e4c1b789.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'); } |