+2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * python/py-prettyprint.c (print_string_repr): Suppress
+ address printing
+
2009-11-13 Tristan Gingold <gingold@adacore.com>
* avr-tdep.c (avr_push_dummy_call): Fix endianness issue and avoid
Py_DECREF (py_str);
}
else if (replacement)
- common_val_print (replacement, stream, recurse, options, language);
+ {
+ struct value_print_options opts = *options;
+
+ opts.addressprint = 0;
+ common_val_print (replacement, stream, recurse, &opts, language);
+ }
else
gdbpy_print_stack ();
}
+2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com>
+
+ * gdb.python/py-prettyprint.exp: Adjust.
+
2009-11-12 Daniel Jacobowitz <dan@codesourcery.com>
* lib/cell.exp (skip_cell_tests): Clean up test files before
gdb_py_test_silent_cmd "set print elements 200" "" 1
}
- gdb_test "print x" " = $hex \"this is x\""
- gdb_test "print cstring" " = $hex \"const string\""
+ gdb_test "print x" " = \"this is x\""
+ gdb_test "print cstring" " = \"const string\""
- gdb_test "print c" " = container $hex \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
+ gdb_test "print c" " = container \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
gdb_test "continue" "Program exited normally\."