* breakpoint.c (check_no_tracepoint_commands): Use
authorVladimir Prus <vladimir@codesourcery.com>
Tue, 23 Mar 2010 21:36:05 +0000 (21:36 +0000)
committerVladimir Prus <vladimir@codesourcery.com>
Tue, 23 Mar 2010 21:36:05 +0000 (21:36 +0000)
current spelling of 'teval'.

gdb/ChangeLog
gdb/breakpoint.c

index f801b41e2bec09bad7f80ce1942c1e42d5473a4d..cbc8eb62295517b99e200b2c24deb20f75d60f98 100644 (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
index 41fe09a498dbd9c1b8fbeabded7d41ab9c0502a9..f47d63cbb8bb790a0f4fbed5adbb9009b6adfa25 100644 (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"));
     }
 }