enum captured_mi_execute_command_actions
{
EXECUTE_COMMAND_DISPLAY_PROMPT,
- EXECUTE_COMMAND_SUPRESS_PROMPT
+ EXECUTE_COMMAND_SUPPRESS_PROMPT
};
/* This structure is used to pass information from captured_mi_execute_command
Return <0 for error; >=0 for ok.
args->action will tell mi_execute_command what action
- to perfrom after the given command has executed (display/supress
+ to perfrom after the given command has executed (display/suppress
prompt, display error). */
static void
{
/* Don't print the prompt. We are executing the target in
synchronous mode. */
- args->action = EXECUTE_COMMAND_SUPRESS_PROMPT;
+ args->action = EXECUTE_COMMAND_SUPPRESS_PROMPT;
return;
}
break;
RETURN_MASK_ALL);
exception_print (gdb_stderr, result);
- if (args.action == EXECUTE_COMMAND_SUPRESS_PROMPT)
+ if (args.action == EXECUTE_COMMAND_SUPPRESS_PROMPT)
{
/* The command is executing synchronously. Bail out early
suppressing the finished prompt. */