aboutsummaryrefslogtreecommitdiff
path: root/gdb/infcall.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>2008-11-18 00:13:04 +0000
committerDoug Evans <dje@google.com>2008-11-18 00:13:04 +0000
commit2e74121d77ccfd8353d64fd8a2ec8a5fbb881967 (patch)
treeeb9fc0bbcfd564939d334af6619e6b6c0270b1a5 /gdb/infcall.c
parentfc04d609078bc08f7fc958a2cba034c1769a8d3b (diff)
downloadgdb-2e74121d77ccfd8353d64fd8a2ec8a5fbb881967.zip
gdb-2e74121d77ccfd8353d64fd8a2ec8a5fbb881967.tar.gz
gdb-2e74121d77ccfd8353d64fd8a2ec8a5fbb881967.tar.bz2
* infcall.c (call_function_by_hand): Fix punctuation and capitalization
on error messages. * gdb.mi/mi-syn-frame.exp: Update expected output. * gdb.mi/mi2-syn-frame.exp: Update expected output.
Diffstat (limited to 'gdb/infcall.c')
-rw-r--r--gdb/infcall.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/infcall.c b/gdb/infcall.c
index aa3bee0..b2ca485 100644
--- a/gdb/infcall.c
+++ b/gdb/infcall.c
@@ -339,7 +339,7 @@ call_function_by_hand (struct value *function, int nargs, struct value **args)
gdbarch = get_frame_arch (frame);
if (!gdbarch_push_dummy_call_p (gdbarch))
- error (_("This target does not support function calls"));
+ error (_("This target does not support function calls."));
/* Create a cleanup chain that contains the retbuf (buffer
containing the register values). This chain is create BEFORE the
@@ -529,7 +529,7 @@ call_function_by_hand (struct value *function, int nargs, struct value **args)
}
if (nargs < TYPE_NFIELDS (ftype))
- error (_("too few arguments in function call"));
+ error (_("Too few arguments in function call."));
{
int i;
@@ -754,7 +754,7 @@ The program being debugged exited while in a function called from GDB."));
error (_("\
The program being debugged was signaled while in a function called from GDB.\n\
GDB has restored the context to what it was before the call.\n\
-To change this behavior use \"set unwindonsignal off\"\n\
+To change this behavior use \"set unwindonsignal off\".\n\
Evaluation of the expression containing the function (%s) will be abandoned."),
name);
}
@@ -774,7 +774,7 @@ Evaluation of the expression containing the function (%s) will be abandoned."),
error (_("\
The program being debugged was signaled while in a function called from GDB.\n\
GDB remains in the frame where the signal was received.\n\
-To change this behavior use \"set unwindonsignal on\"\n\
+To change this behavior use \"set unwindonsignal on\".\n\
Evaluation of the expression containing the function (%s) will be abandoned."),
name);
}