gdb/
authorYao Qi <yao@codesourcery.com>
Fri, 24 Aug 2012 03:17:13 +0000 (03:17 +0000)
committerYao Qi <yao@codesourcery.com>
Fri, 24 Aug 2012 03:17:13 +0000 (03:17 +0000)
* jv-exp.y (push_expression_name): Add "." at the end of error
message.

gdb/ChangeLog
gdb/jv-exp.y

index 93a993c..c4b9e07 100644 (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.
index ee17654..d0fca67 100644 (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);
     }
 
 }