Handle override blocks starting at the beginning of the line correctly

This commit is contained in:
Thomas Goyne 2013-11-04 13:53:57 -08:00
parent 10cbff0ee2
commit f0ef14669f
1 changed files with 2 additions and 2 deletions

View File

@ -164,8 +164,8 @@ int block_at_pos(std::string const& text, int pos) {
bool in_block = false;
for (int i = 0; i <= pos && i <= max; ++i) {
if (i > 0 && text[i] == '{') {
if (!in_block)
if (text[i] == '{') {
if (!in_block && i > 0)
++n;
in_block = true;
}