diff options
author | nyamatongwe <unknown> | 2003-04-18 01:56:45 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-04-18 01:56:45 +0000 |
commit | 297ba8c63024f4211873fed0b3fbfba573430f5e (patch) | |
tree | a6471ba7fd699c3ba67d0799176a59d491a8370d /src | |
parent | 98973e19d37c143bded944e3cfa3eb4ab3725115 (diff) | |
download | scintilla-mirror-297ba8c63024f4211873fed0b3fbfba573430f5e.tar.gz |
Added line end at end of file.
Diffstat (limited to 'src')
-rw-r--r-- | src/ExternalLexer.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/ExternalLexer.cxx b/src/ExternalLexer.cxx index 531e258f2..88be76f24 100644 --- a/src/ExternalLexer.cxx +++ b/src/ExternalLexer.cxx @@ -5,10 +5,10 @@ // Copyright 2001 Simon Steele <ss@pnotepad.org>, portions copyright Neil Hodgson. // The License.txt file describes the conditions under which this software may be distributed. -#include <stdlib.h> -#include <stdio.h> +#include <stdlib.h> +#include <stdio.h> #include <string.h> -#include <ctype.h> +#include <ctype.h> #include "Platform.h" @@ -63,8 +63,8 @@ void ExternalLexerModule::Lex(unsigned int startPos, int lengthDoc, int initStyl char **kwds = WordListsToStrings(keywordlists); char *ps = styler.GetProperties(); - - // The accessor passed in is always a DocumentAccessor so this cast and the subsequent + + // The accessor passed in is always a DocumentAccessor so this cast and the subsequent // access will work. Can not use the stricter dynamic_cast as that requires RTTI. DocumentAccessor &da = static_cast<DocumentAccessor &>(styler); WindowID wID = da.GetWindow(); @@ -82,8 +82,8 @@ void ExternalLexerModule::Fold(unsigned int startPos, int lengthDoc, int initSty char **kwds = WordListsToStrings(keywordlists); char *ps = styler.GetProperties(); - - // The accessor passed in is always a DocumentAccessor so this cast and the subsequent + + // The accessor passed in is always a DocumentAccessor so this cast and the subsequent // access will work. Can not use the stricter dynamic_cast as that requires RTTI. DocumentAccessor &da = static_cast<DocumentAccessor &>(styler); WindowID wID = da.GetWindow(); @@ -253,4 +253,4 @@ LMMinder::~LMMinder() LexerManager::DeleteInstance(); } -LMMinder minder;
\ No newline at end of file +LMMinder minder; |