* jv-exp.y (push_expression_name): Add "." at the end of error
	message.
This commit is contained in:
Yao Qi 2012-08-24 03:17:13 +00:00
parent de132db8f6
commit 8c56c1b90e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-08-24 Yao Qi <yao@codesourcery.com>
* jv-exp.y (push_expression_name): Add "." at the end of error
message.
2012-08-23 Khoo Yit Phang <khooyp@cs.umd.edu>
Document how to return from "python-interactive" to GDB.

View File

@ -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);
}
}