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:
4e2f8df
)
* cli/cli-decode.c (print_doc_line): Use stream instead of
author
Doug Evans
<dje@google.com>
Wed, 25 Apr 2012 18:58:57 +0000
(18:58 +0000)
committer
Doug Evans
<dje@google.com>
Wed, 25 Apr 2012 18:58:57 +0000
(18:58 +0000)
current_uiout.
gdb/ChangeLog
patch
|
blob
|
history
gdb/cli/cli-decode.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index
3fea17d
..
171e75b
100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,8
@@
+2012-04-25 Doug Evans <dje@google.com>
+
+ * cli/cli-decode.c (print_doc_line): Use stream instead of
+ current_uiout.
+
2012-04-25 Sergio Durigan Junior <sergiodj@redhat.com>
* features/arm-with-iwmmxt.c: Regenerate.
diff --git
a/gdb/cli/cli-decode.c
b/gdb/cli/cli-decode.c
index
da5f917
..
b9cfafa
100644
(file)
--- a/
gdb/cli/cli-decode.c
+++ b/
gdb/cli/cli-decode.c
@@
-1018,7
+1018,7
@@
print_doc_line (struct ui_file *stream, char *str)
line_buffer[p - str] = '\0';
if (islower (line_buffer[0]))
line_buffer[0] = toupper (line_buffer[0]);
- ui_out_text (
current_uiout
, line_buffer);
+ ui_out_text (
stream
, line_buffer);
}
/* Print one-line help for command C.