From: Yao Qi Date: Fri, 24 Aug 2012 03:17:13 +0000 (+0000) Subject: gdb/ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8c56c1b90ec8aba22066f4fd153d6ec9ded4d050;p=binutils-gdb.git gdb/ * jv-exp.y (push_expression_name): Add "." at the end of error message. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 93a993c6d2e..c4b9e070007 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2012-08-24 Yao Qi + + * jv-exp.y (push_expression_name): Add "." at the end of error + message. + 2012-08-23 Khoo Yit Phang Document how to return from "python-interactive" to GDB. diff --git a/gdb/jv-exp.y b/gdb/jv-exp.y index ee176549b20..d0fca67ce65 100644 --- a/gdb/jv-exp.y +++ b/gdb/jv-exp.y @@ -1399,7 +1399,7 @@ push_expression_name (struct stoken name) else if (!have_full_symbols () && !have_partial_symbols ()) error (_("No symbol table is loaded. Use the \"file\" command")); else - error (_("No symbol \"%s\" in current context"), tmp); + error (_("No symbol \"%s\" in current context."), tmp); } }