Rephrase error message in infcall.c:call_function_by_hand
authorJoel Brobecker <brobecker@gnat.com>
Mon, 30 May 2011 16:08:28 +0000 (16:08 +0000)
committerJoel Brobecker <brobecker@gnat.com>
Mon, 30 May 2011 16:08:28 +0000 (16:08 +0000)
No real change besides the error message.

gdb/ChangeLog:

* infcall.c (call_function_by_hand): Rephrase error message.

gdb/ChangeLog
gdb/infcall.c

index 83203a21293150919d5a68a21af6230ec4136643..7a60b8e3cf50a78023950126bde082739a04385b 100644 (file)
@@ -1,3 +1,7 @@
+2011-05-30  Joel Brobecker  <brobecker@adacore.com>
+
+       * infcall.c (call_function_by_hand): Rephrase error message.
+
 2011-05-27  Pedro Alves  <pedro@codesourcery.com>
 
        * defs.h (struct thread_info, struct inferior): Delete forward
index 4063b7ffabca366e0e262c2aaeca89c77e4682ad..6553e2a1fd290dbec44c4d80f171031052d6d7b2 100644 (file)
@@ -496,7 +496,7 @@ call_function_by_hand (struct value *function, int nargs, struct value **args)
     error (_("May not call functions while looking at trace frames."));
 
   if (execution_direction == EXEC_REVERSE)
-    error (_("May not call functions in reverse."));
+    error (_("Cannot call functions in reverse mode."));
 
   frame = get_current_frame ();
   gdbarch = get_frame_arch (frame);
This page took 0.028996 seconds and 4 git commands to generate.