aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Document.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index 41a1c3414..d30cb50cf 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2846,7 +2846,7 @@ Sci::Position Document::BraceMatch(Sci::Position position, Sci::Position /*maxRe
const unsigned char chBrace = CharAt(position);
const unsigned char chSeek = BraceOpposite(chBrace);
if (chSeek == '\0')
- return - 1;
+ return -1;
const int styBrace = StyleIndexAt(position);
int direction = -1;
if (chBrace == '(' || chBrace == '[' || chBrace == '{' || chBrace == '<')
@@ -2872,7 +2872,7 @@ Sci::Position Document::BraceMatch(Sci::Position position, Sci::Position /*maxRe
}
position += direction;
}
- return - 1;
+ return -1;
}
/**