From: Joel Brobecker Date: Mon, 30 May 2011 16:08:28 +0000 (+0000) Subject: Rephrase error message in infcall.c:call_function_by_hand X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c2949be03bf333bd3de59dc3260762d3201f6b79;p=binutils-gdb.git Rephrase error message in infcall.c:call_function_by_hand No real change besides the error message. gdb/ChangeLog: * infcall.c (call_function_by_hand): Rephrase error message. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 83203a21293..7a60b8e3cf5 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2011-05-30 Joel Brobecker + + * infcall.c (call_function_by_hand): Rephrase error message. + 2011-05-27 Pedro Alves * defs.h (struct thread_info, struct inferior): Delete forward diff --git a/gdb/infcall.c b/gdb/infcall.c index 4063b7ffabc..6553e2a1fd2 100644 --- a/gdb/infcall.c +++ b/gdb/infcall.c @@ -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);