1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

catch cli command "jump"

This commit is contained in:
Alain Magloire 2003-02-05 03:17:09 +00:00
parent a8bb45b275
commit 5c0fb8dfd1

View file

@ -79,6 +79,8 @@ public class CLIProcessor {
type = MIRunningEvent.CONTINUE; type = MIRunningEvent.CONTINUE;
} else if (operation.startsWith("sig") && "signal".indexOf(operation) != -1) { } else if (operation.startsWith("sig") && "signal".indexOf(operation) != -1) {
type = MIRunningEvent.CONTINUE; type = MIRunningEvent.CONTINUE;
} else if (operation.startsWith("j") && "jump".indexOf(operation) != -1) {
type = MIRunningEvent.CONTINUE;
} }
return type; return type;
} }