annotate src/qscintilla-4-matlab-while-fold.patch @ 4587:9c7b4337da98

add qscintilla while foldpoint patch (bug #52659) * src/qscintilla-4-matlab-while-fold.patch: new file * dist-files.mk: add ref to qscintilla-4-matlab-while-fold.patch
author John D
date Tue, 02 Jan 2018 13:27:25 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4587
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
1 diff -ur QScintilla_gpl-2.10.2.orig/lexers/LexMatlab.cpp QScintilla_gpl-2.10.2/lexers/LexMatlab.cpp
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
2 --- QScintilla_gpl-2.10.2.orig/lexers/LexMatlab.cpp 2018-01-02 08:15:29.183313917 -0500
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
3 +++ QScintilla_gpl-2.10.2/lexers/LexMatlab.cpp 2018-01-02 08:16:40.754287756 -0500
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
4 @@ -62,6 +62,7 @@
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
5 if (strcmp ("if", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
6 strcmp ("for", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
7 strcmp ("switch", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
8 + strcmp ("while", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
9 strcmp ("try", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
10 strcmp ("do", str) == 0 ||
9c7b4337da98 add qscintilla while foldpoint patch (bug #52659)
John D
parents:
diff changeset
11 strcmp ("parfor", str) == 0 ||