From 8c56c1b90ec8aba22066f4fd153d6ec9ded4d050 Mon Sep 17 00:00:00 2001 From: Yao Qi Date: Fri, 24 Aug 2012 03:17:13 +0000 Subject: [PATCH] gdb/ * jv-exp.y (push_expression_name): Add "." at the end of error message. --- gdb/ChangeLog | 5 +++++ gdb/jv-exp.y | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 93a993c..c4b9e07 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 ee17654..d0fca67 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); } } -- 2.7.4