mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-05 16:56:04 +02:00
cathc "d" command.
This commit is contained in:
parent
5381ea3906
commit
968e9cfc2c
1 changed files with 1 additions and 1 deletions
|
@ -106,7 +106,7 @@ public class CLIProcessor {
|
|||
boolean isDelete = false;
|
||||
/* deleting breaks: clear, delete */
|
||||
if ((operation.startsWith("cl") && "clear".indexOf(operation) != -1) ||
|
||||
(operation.startsWith("del") && "delete".indexOf(operation) != -1)) {
|
||||
(operation.equals("d") || (operation.startsWith("del") && "delete".indexOf(operation) != -1))) {
|
||||
isDelete = true;
|
||||
}
|
||||
return isDelete;
|
||||
|
|
Loading…
Add table
Reference in a new issue