diff options
author | Yao Qi <yao@codesourcery.com> | 2012-08-24 03:17:13 +0000 |
---|---|---|
committer | Yao Qi <yao@codesourcery.com> | 2012-08-24 03:17:13 +0000 |
commit | 8c56c1b90ec8aba22066f4fd153d6ec9ded4d050 (patch) | |
tree | 907fe96d0b9a1bd763fb4cd1ef43bcf609100d5d /gdb/jv-exp.y | |
parent | de132db8f604199625ad9959b4eec0c6b812dc9e (diff) | |
download | gdb-8c56c1b90ec8aba22066f4fd153d6ec9ded4d050.zip gdb-8c56c1b90ec8aba22066f4fd153d6ec9ded4d050.tar.gz gdb-8c56c1b90ec8aba22066f4fd153d6ec9ded4d050.tar.bz2 |
gdb/
* jv-exp.y (push_expression_name): Add "." at the end of error
message.
Diffstat (limited to 'gdb/jv-exp.y')
-rw-r--r-- | gdb/jv-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |