diff options
author | joerg <joerg@FreeBSD.org> | 1995-09-10 13:04:45 +0000 |
---|---|---|
committer | joerg <joerg@FreeBSD.org> | 1995-09-10 13:04:45 +0000 |
commit | 13c37952a163fb4d87ca1e09903643163f912c1f (patch) | |
tree | 97d25105ade72ef7eb2236673a7062ab2c0aa89b | |
parent | b4e6cbbd8a75089b1a9fae4421063c8dc3278624 (diff) | |
download | FreeBSD-src-13c37952a163fb4d87ca1e09903643163f912c1f.zip FreeBSD-src-13c37952a163fb4d87ca1e09903643163f912c1f.tar.gz |
Re-initialize the terminal after ^Z / fg.
Submitted by: thomas@ghpc8.ihf.rwth-aachen.de (Thomas Gellekum)
-rw-r--r-- | gnu/usr.bin/texinfo/info/terminal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/usr.bin/texinfo/info/terminal.c b/gnu/usr.bin/texinfo/info/terminal.c index fcb3bb5..3c92337 100644 --- a/gnu/usr.bin/texinfo/info/terminal.c +++ b/gnu/usr.bin/texinfo/info/terminal.c @@ -725,6 +725,7 @@ terminal_prep_terminal () ttybuff.sg_flags |= CBREAK; ioctl (tty, TIOCSETN, &ttybuff); #endif /* !HAVE_TERMIO_H */ + terminal_begin_using_terminal(); } /* Restore the tty settings back to what they were before we started using |