Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [patch][python] Fix python/14513
@ 2013-09-18 13:17 Phil Muldoon
  2013-09-18 20:26 ` Tom Tromey
  0 siblings, 1 reply; 8+ messages in thread
From: Phil Muldoon @ 2013-09-18 13:17 UTC (permalink / raw)
  To: gdb-patches


This patch fixes a bug for silent parameters that do not print anything
when a parameter is set.  Currently if a parameter is silent, a
newline will be erroneously outputted.

E.g.

(gdb) set extended-prompt (New Prompt)

(New Prompt)

Parameters normally report what the value has been set too:

(gdb) set foobar 5
foobar has been set to 5.

This patch just checks the string length of the output string before
printing it.

OK?

Cheers,

Phil

2013-09-18  Phil Muldoon  <pmuldoon@redhat.com>

        PR python/14513

	* python/py-param.c (get_set_value): Check doc_string length
	before outputting to console.

--

diff --git a/gdb/python/py-param.c b/gdb/python/py-param.c
index 9f56c3a..921acae 100644
--- a/gdb/python/py-param.c
+++ b/gdb/python/py-param.c
@@ -389,7 +389,9 @@ get_set_value (char *args, int from_tty,
     }
 
   make_cleanup (xfree, set_doc_string);
-  fprintf_filtered (gdb_stdout, "%s\n", set_doc_string);
+
+  if (strlen (set_doc_string) > 0)
+    fprintf_filtered (gdb_stdout, "%s\n", set_doc_string);
 
   Py_XDECREF (set_doc_func);
   do_cleanups (cleanup);

	


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2013-11-07 21:54 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-18 13:17 [patch][python] Fix python/14513 Phil Muldoon
2013-09-18 20:26 ` Tom Tromey
2013-09-18 20:34   ` Phil Muldoon
2013-09-18 20:40     ` Tom Tromey
2013-10-02  9:30       ` Phil Muldoon
2013-10-21 21:58         ` Tom Tromey
2013-10-30  9:01           ` Phil Muldoon
2013-11-08  3:18             ` Tom Tromey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox