From 82f8770a5e8d19a1caf876559a5771b248d273bc Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Thu, 4 Jul 2013 13:24:02 -0400 Subject: [PATCH] toolbreak --- debugger/lexer.re.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/debugger/lexer.re.cpp b/debugger/lexer.re.cpp index 20fac03..8ba234a 100644 --- a/debugger/lexer.re.cpp +++ b/debugger/lexer.re.cpp @@ -282,6 +282,11 @@ bool ParseLine(const char *iter, Command *command) continue; } + 'tbrk' | 'tbreak' | 'toolbreak' { + Parse(parser, tkBREAK, 0, command); + continue; + } + 'g' | 'go' { Parse(parser, tkCONTINUE, 0, command); continue;