diff options
author | Pádraig Brady <P@draigBrady.com> | 2015-01-21 18:11:06 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2015-01-24 01:06:59 +0000 |
commit | ed38d9d1cea592324de8133890789a3195d1b14d (patch) | |
tree | 980e533705bfb7623a9adc2e348b2328319b5b90 /doc | |
parent | cdd21d31a3fdd4ffd7a90fa3b43fb7f1c08d8f6d (diff) | |
download | coreutils-ed38d9d1cea592324de8133890789a3195d1b14d.tar.xz |
stty: add support for extproc/LINEMODE
Add support for the "extproc" option which is well described at:
http://lists.gnu.org/archive/html/bug-readline/2011-01/msg00004.html
* src/stty.c (usage): Describe the extproc option if either the
Linux EXTPROC local option is defined, or the equivalent
BSD TIOCEXT ioctl is defined.
(main): Make the separate ioctl call for extproc on BSD.
* doc/coreutils.texi (stty invocation): Describe the option,
and reference the related RFC 1116.
* NEWS: Mention the new feature.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 5a3c31a15..f84094039 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -14269,6 +14269,14 @@ the line as indicated by the @code{echoprt} and @code{echoe} settings, instead of by the @code{echoctl} and @code{echok} settings. Non-POSIX@. May be negated. + +@item extproc +@opindex extproc +Enable @samp{LINEMODE}, which is used to avoid echoing +each character over high latency links. See also +@uref{ftp://ftp.rfc-editor.org/in-notes/rfc1116.txt, Internet RFC 1116}. +Non-POSIX@. +May be negated. @end table @@ -14311,7 +14319,7 @@ cread -ignbrk brkint -inlcr -igncr icrnl -ixoff -iuclc -ixany imaxbel opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0 isig icanon iexten echo echoe echok -echonl --noflsh -xcase -tostop -echoprt echoctl echoke +-noflsh -xcase -tostop -echoprt echoctl echoke -extproc @end example @noindent |