diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 19:44:08 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-12-01 19:44:08 +0000 |
commit | 4398bb1f32f03c61094ac26e1f6a0984ecefd905 (patch) | |
tree | 436d406aae1fb1c34f21e21cd816f836e640cd92 /term | |
parent | cb165db2e1367c56cb97f3fe4dd8de919317655c (diff) |
(devio_start_output): Honor USER_OUTPUT_SUSP flag.
Diffstat (limited to 'term')
-rw-r--r-- | term/devio.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/term/devio.c b/term/devio.c index ea6cd413..9bef722d 100644 --- a/term/devio.c +++ b/term/devio.c @@ -71,6 +71,11 @@ static struct port_info *phys_reply_pi; static device_t device_master; +/* Forward */ +static void devio_desert_dtr (); + + + static void init_devio (void) __attribute__ ((constructor)); static void init_devio () @@ -200,7 +205,7 @@ devio_start_output () size = qsize (outputq); - if (!size || output_pending) + if (!size || output_pending || (termflags & USER_OUTPUT_SUSP)) return; /* Copy characters onto PENDING_OUTPUT, not bothering |