* breakpoint.c (check_no_tracepoint_commands): Use

current spelling of 'teval'.
This commit is contained in:
Vladimir Prus 2010-03-23 21:36:05 +00:00
parent 58ddf7c9cd
commit 51661e93bc
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
* breakpoint.c (check_no_tracepoint_commands): Use
current spelling of 'teval'.
2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
Unify actions and commands

View File

@ -716,8 +716,8 @@ check_no_tracepoint_commands (struct command_line *commands)
if (strstr (c->line, "collect ") == c->line)
error (_("The 'collect' command can only be used for tracepoints"));
if (strstr (c->line, "eval ") == c->line)
error (_("The 'eval' command can only be used for tracepoints"));
if (strstr (c->line, "teval ") == c->line)
error (_("The 'teval' command can only be used for tracepoints"));
}
}