Merge remote-tracking branch 'elegios/master'

This commit is contained in:
Maxime Coste 2015-08-25 19:23:01 +01:00
commit 3552152b34

View File

@ -435,8 +435,8 @@ Selection select_argument(const Buffer& buffer, const Selection& selection,
auto classify = [](Codepoint c) {
switch (c)
{
case '(': case '[': case '{': case '<': return Opening;
case ')': case ']': case '}': case '>': return Closing;
case '(': case '[': case '{': return Opening;
case ')': case ']': case '}': return Closing;
case ',': case ';': return Delimiter;
default: return None;
}