diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/LexOthers.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index f074a046d..0780c357c 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -20,7 +20,7 @@ #include "Scintilla.h" #include "SciLexer.h" -static inline AtEOL(Accessor &styler, unsigned int i) { +static inline bool AtEOL(Accessor &styler, unsigned int i) { return (styler[i] == '\n') || ((styler[i] == '\r') && (styler.SafeGetCharAt(i + 1) != '\n')); } |