Look at the char at the left of \ or @.

This commit is contained in:
Roberto Raggi
2009-02-23 17:54:08 +01:00
parent 65ff19e7fa
commit e2079e3269

View File

@@ -391,7 +391,7 @@ static int startOfOperator(TextEditor::ITextEditable *editor,
} else if (ch3 == QLatin1Char('-') && ch2 == QLatin1Char('>') && ch == QLatin1Char('*')) {
k = T_ARROW_STAR;
start -= 3;
} else if (ch == QLatin1Char('@') || ch == QLatin1Char('\\')) {
} else if ((ch2.isNull() || ch2.isSpace()) && (ch == QLatin1Char('@') || ch == QLatin1Char('\\'))) {
k = T_DOXY_COMMENT;
--start;
}