changeset 3672:05e3d28e2e67

qscintilla: add patch for transpose fixes * src/qscintilla-1-transpose-fix.patch: new file. * dist-files.mk: add qscintilla-1-transpose-fix.patch.
author John Donoghue
date Fri, 01 Aug 2014 09:16:07 -0400
parents 95454fa2df8b
children 972f2d9c76ca
files dist-files.mk src/qscintilla-1-transpose-fix.patch
diffstat 2 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/dist-files.mk	Mon Jul 28 15:41:31 2014 -0400
+++ b/dist-files.mk	Fri Aug 01 09:16:07 2014 -0400
@@ -517,6 +517,7 @@
   qjson.mk \
   qrupdate-1-fixes.patch \
   qrupdate.mk \
+  qscintilla-1-transpose-fix.patch \
   qscintilla-2-bang-fix.patch \
   qscintilla.mk \
   qt-1-cherrypicks.patch \
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/qscintilla-1-transpose-fix.patch	Fri Aug 01 09:16:07 2014 -0400
@@ -0,0 +1,12 @@
+diff -ur QScintilla-gpl-2.8.3.orig/lexers/LexMatlab.cpp QScintilla-gpl-2.8.3/lexers/LexMatlab.cpp
+--- QScintilla-gpl-2.8.3.orig/lexers/LexMatlab.cpp	2014-08-01 07:57:01.175910086 -0400
++++ QScintilla-gpl-2.8.3/lexers/LexMatlab.cpp	2014-08-01 08:01:05.815912051 -0400
+@@ -213,7 +213,7 @@
+ 			} else if (isalpha(sc.ch)) {
+ 				sc.SetState(SCE_MATLAB_KEYWORD);
+ 			} else if (isoperator(static_cast<char>(sc.ch)) || sc.ch == '@' || sc.ch == '\\') {
+-				if (sc.ch == ')' || sc.ch == ']') {
++				if (sc.ch == ')' || sc.ch == ']' || sc.ch == '}') {
+ 					transpose = true;
+ 				} else {
+ 					transpose = false;