Add deliberate fall-through comment into scintilla code

This commit is contained in:
baldurk
2020-01-07 17:28:17 +00:00
parent 7b678a4dae
commit 10aa4662ec
+1
View File
@@ -784,6 +784,7 @@ int RESearch::Execute(CharacterIndexer &ci, int lp, int endp) {
lp++;
if (lp >= endp) /* if EOS, fail, else fall through. */
return 0;
// Falls through.
default: /* regular matching all the way. */
while (lp < endp) {
ep = PMatch(ci, lp, endp, ap);