Git commit 89f9ee4590e8f55368fd290e50f35abaec2efaf6 by Dominik Haumann. Committed on 02/07/2012 at 15:19. Pushed by dhaumann into branch 'master'. remove " matching again, since the search direction always is ambiguous M +2 -3 part/document/katedocument.cpp http://commits.kde.org/kate/89f9ee4590e8f55368fd290e50f35abaec2efaf6 diff --git a/part/document/katedocument.cpp b/part/document/katedocument.cpp index 48c867f..564a0da 100644 --- a/part/document/katedocument.cpp +++ b/part/document/katedocument.cpp @@ -92,8 +92,8 @@ static int dummy =3D 0; = class KateTemplateScript; = -inline bool isStartBracket( const QChar& c ) { return c =3D=3D '{' || c = =3D=3D '[' || c =3D=3D '(' || c =3D=3D '"'; } -inline bool isEndBracket ( const QChar& c ) { return c =3D=3D '}' || c = =3D=3D ']' || c =3D=3D ')' || c =3D=3D '"'; } +inline bool isStartBracket( const QChar& c ) { return c =3D=3D '{' || c = =3D=3D '[' || c =3D=3D '('; } +inline bool isEndBracket ( const QChar& c ) { return c =3D=3D '}' || c = =3D=3D ']' || c =3D=3D ')'; } inline bool isBracket ( const QChar& c ) { return isStartBracket( c ) = || isEndBracket( c ); } = class KateDocument::LoadSaveFilterCheckPlugins @@ -3709,7 +3709,6 @@ bool KateDocument::findMatchingBracket( KTextEditor::= Range& range, int maxLines case ']': opposite =3D '['; break; case '(': opposite =3D ')'; break; case ')': opposite =3D '('; break; - case '"': opposite =3D '"'; break; default: return false; } =