diff options
author | Neil <nyamatongwe@gmail.com> | 2013-12-15 10:46:39 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-12-15 10:46:39 +1100 |
commit | 982a9be5d39fb042e1deb86af5930cb54729f83f (patch) | |
tree | e93ecbd0e73da10016493ba3c736f3d16ee1a90a /lexlib/StyleContext.h | |
parent | c0f861272b0d90566c68398087db3a93840f47c1 (diff) | |
download | scintilla-mirror-982a9be5d39fb042e1deb86af5930cb54729f83f.tar.gz |
Format normalization - whitespace and braces made consistent.
Parameter names added to method declarations.
Diffstat (limited to 'lexlib/StyleContext.h')
-rw-r--r-- | lexlib/StyleContext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexlib/StyleContext.h b/lexlib/StyleContext.h index 12d69d8f2..9b5ce5dff 100644 --- a/lexlib/StyleContext.h +++ b/lexlib/StyleContext.h @@ -28,7 +28,7 @@ class StyleContext { IDocumentWithLineEnd *multiByteAccess; unsigned int endPos; unsigned int lengthDocument; - + // Used for optimizing GetRelativeCharacter unsigned int posRelative; unsigned int currentPosLastRelative; @@ -43,7 +43,7 @@ class StyleContext { chNext = static_cast<unsigned char>(styler.SafeGetCharAt(currentPos+width, 0)); widthNext = 1; } - // End of line determined from line end position, allowing CR, LF, + // End of line determined from line end position, allowing CR, LF, // CRLF and Unicode line ends as set by document. if (currentLine < lineDocEnd) atLineEnd = static_cast<int>(currentPos) >= (lineStartNext-1); |