diff options
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/miscbltin.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bin/sh/miscbltin.c b/bin/sh/miscbltin.c index 8424f3c6852c..faccfa92d221 100644 --- a/bin/sh/miscbltin.c +++ b/bin/sh/miscbltin.c @@ -124,7 +124,7 @@ fdctx_destroy(struct fdctx *fdc) * Reposition the file offset. Here is the layout of buf: * * | off - * v + * v * |*****************|-------| * buf ep buf+buflen * |<- residue ->| @@ -143,8 +143,6 @@ fdctx_destroy(struct fdctx *fdc) * The read builtin. The -r option causes backslashes to be treated like * ordinary characters. * - * This uses unbuffered input, which may be avoidable in some cases. - * * Note that if IFS=' :' then read x y should work so that: * 'a b' x='a', y='b' * ' a b ' x='a', y='b' |