* python/py-prettyprint.c (print_stack_unless_memory_error): Add
missing ">" to message.
This commit is contained in:
parent
f4f7ab0529
commit
1dae3efc56
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2011-03-31 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
|
* python/py-prettyprint.c (print_stack_unless_memory_error): Add
|
||||||
|
missing ">" to message.
|
||||||
|
|
||||||
2011-03-31 Tom Tromey <tromey@redhat.com>
|
2011-03-31 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
* varobj.c (instantiate_pretty_printer): Remove duplicate
|
* varobj.c (instantiate_pretty_printer): Remove duplicate
|
||||||
|
|
|
@ -288,7 +288,7 @@ print_stack_unless_memory_error (struct ui_file *stream)
|
||||||
make_cleanup (xfree, msg);
|
make_cleanup (xfree, msg);
|
||||||
|
|
||||||
if (msg == NULL || *msg == '\0')
|
if (msg == NULL || *msg == '\0')
|
||||||
fprintf_filtered (stream, _("<error reading variable"));
|
fprintf_filtered (stream, _("<error reading variable>"));
|
||||||
else
|
else
|
||||||
fprintf_filtered (stream, _("<error reading variable: %s>"), msg);
|
fprintf_filtered (stream, _("<error reading variable: %s>"), msg);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue