[RFA,v3,10/13] Call wrap_hint in one more spot in py-framefilter.c

Message ID 20180323205512.14434-11-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey March 23, 2018, 8:55 p.m. UTC
  PR python/16486 notes that "bt" output is still wrapped differently
when a frame filter is in use.  This patch brings it a bit closer by
adding one more wrap_hint call, in a place where stack.c does this as
well.

gdb/ChangeLog
2018-03-23  Tom Tromey  <tom@tromey.com>

	PR python/16486:
	* python/py-framefilter.c (py_print_args): Call wrap_hint.
---
 gdb/ChangeLog               | 5 +++++
 gdb/python/py-framefilter.c | 1 +
 2 files changed, 6 insertions(+)
  

Patch

diff --git a/gdb/python/py-framefilter.c b/gdb/python/py-framefilter.c
index 6186ffd274..eb4f9c6adf 100644
--- a/gdb/python/py-framefilter.c
+++ b/gdb/python/py-framefilter.c
@@ -864,6 +864,7 @@  py_print_args (PyObject *filter,
 
   TRY
     {
+      out->wrap_hint ("   ");
       annotate_frame_args ();
       if (! out->is_mi_like_p ())
 	out->text (" (");