diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/breakpoint.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f801b41..cbc8eb6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 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 * defs.h (read_command_lines, read_command_lines_1): New diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index 41fe09a..f47d63c 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -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")); } } |