projects
/
platform
/
upstream
/
binutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cac901
)
* cli-out.c (cli_out_new): Initialize new structure member
author
Keith Seitz
<keiths@redhat.com>
Thu, 21 Jun 2001 22:54:06 +0000
(22:54 +0000)
committer
Keith Seitz
<keiths@redhat.com>
Thu, 21 Jun 2001 22:54:06 +0000
(22:54 +0000)
"suppress_output".
gdb/ChangeLog
patch
|
blob
|
history
gdb/cli-out.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index
9761c7e
..
ffc8a1c
100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,8
@@
+2001-06-21 Keith Seitz <keiths@redhat.com>
+
+ * cli-out.c (cli_out_new): Initialize new structure member
+ "suppress_output".
+
2001-06-20 Andrew Cagney <ac131313@redhat.com>
* ui-out.h (ui_out_table_header): Add parameter ``col_name''.
diff --git
a/gdb/cli-out.c
b/gdb/cli-out.c
index
3e8e482
..
42adc79
100644
(file)
--- a/
gdb/cli-out.c
+++ b/
gdb/cli-out.c
@@
-364,6
+364,7
@@
cli_out_new (struct ui_file *stream)
struct ui_out_data *data = XMALLOC (struct ui_out_data);
data->stream = stream;
+ data->suppress_output = 0;
return ui_out_new (&cli_ui_out_impl, data, flags);
}