This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Call wrap_hint in one more spot in py-framefilter.c


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=eb68e48764d4b038858dd4255ed248dbee6c4c0e

commit eb68e48764d4b038858dd4255ed248dbee6c4c0e
Author: Tom Tromey <tom@tromey.com>
Date:   Mon Apr 24 21:59:43 2017 -0600

    Call wrap_hint in one more spot in py-framefilter.c
    
    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-26  Tom Tromey  <tom@tromey.com>
    
    	PR python/16486:
    	* python/py-framefilter.c (py_print_args): Call wrap_hint.

Diff:
---
 gdb/ChangeLog               | 5 +++++
 gdb/python/py-framefilter.c | 1 +
 2 files changed, 6 insertions(+)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 97da811..05f0c2d 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,10 @@
 2018-03-26  Tom Tromey  <tom@tromey.com>
 
+	PR python/16486:
+	* python/py-framefilter.c (py_print_args): Call wrap_hint.
+
+2018-03-26  Tom Tromey  <tom@tromey.com>
+
 	* python/py-framefilter.c (py_print_single_arg): Return
 	EXT_LANG_BT_ERROR from catch.
 
diff --git a/gdb/python/py-framefilter.c b/gdb/python/py-framefilter.c
index 6186ffd..eb4f9c6 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 (" (");


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]