aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/DocumentAccessor.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-02-17 00:39:46 +0000
committernyamatongwe <devnull@localhost>2010-02-17 00:39:46 +0000
commit81966e31f21a009cbae89dd3f774b3a410f201e4 (patch)
treefddf110012583bb00001b22648b574320f642815 /src/DocumentAccessor.cxx
parent827c80b678ba55806c611de6163cafa7dcf03fb8 (diff)
downloadscintilla-mirror-81966e31f21a009cbae89dd3f774b3a410f201e4.tar.gz
Formatting whitespace.
Diffstat (limited to 'src/DocumentAccessor.cxx')
-rw-r--r--src/DocumentAccessor.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DocumentAccessor.cxx b/src/DocumentAccessor.cxx
index a25979dc2..3ea80a40b 100644
--- a/src/DocumentAccessor.cxx
+++ b/src/DocumentAccessor.cxx
@@ -187,7 +187,7 @@ int DocumentAccessor::IndentAmount(int line, int *flags, PFNIsCommentLeader pfnI
indent += SC_FOLDLEVELBASE;
// if completely empty line or the start of a comment...
if ((ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r') ||
- (pfnIsCommentLeader && (*pfnIsCommentLeader)(*this, pos, end-pos)) )
+ (pfnIsCommentLeader && (*pfnIsCommentLeader)(*this, pos, end-pos)))
return indent | SC_FOLDLEVELWHITEFLAG;
else
return indent;