diff options
author | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-07 13:50:49 +0000 |
---|---|---|
committer | aph <aph@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-07-07 13:50:49 +0000 |
commit | 04ef60ef534f1325037ee1c6957352e70ae21071 (patch) | |
tree | eecb58d0deaf76e51e00dcf067d948f1043a7ee0 /libiberty | |
parent | c54bc24912801b1b72f42d99beec58534df71b85 (diff) | |
download | gcc-04ef60ef534f1325037ee1c6957352e70ae21071.tar.gz |
2000-07-07 Andrew Haley <aph@cygnus.com>
* cplus-dem.c (main): fflush() after emitting last char before
waiting for input.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@34902 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libiberty')
-rw-r--r-- | libiberty/ChangeLog | 5 | ||||
-rw-r--r-- | libiberty/cplus-dem.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libiberty/ChangeLog b/libiberty/ChangeLog index 323a6915a40..5c52fd5fbb1 100644 --- a/libiberty/ChangeLog +++ b/libiberty/ChangeLog @@ -1,3 +1,8 @@ +2000-07-07 Andrew Haley <aph@cygnus.com> + + * cplus-dem.c (main): fflush() after emitting last char before + waiting for input. + 2000-06-28 Alex Samuel <samuel@codesourcery.com> * cp-demangle.c (demangle_encoding): Accept no substitutions. diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c index 44d11968162..81ebbfcbe51 100644 --- a/libiberty/cplus-dem.c +++ b/libiberty/cplus-dem.c @@ -4772,6 +4772,7 @@ main (argc, argv) if (c == EOF) break; putchar (c); + fflush (stdout); } } |