Summary
stty output flags manipulate input flags in termios struct
Metadata
- Id: b32a3beb921e34255d48c77dd2a340b099879a35
- Trac id: 982
- Type: defect
- Reporter: ckeen
- Owner: ashinn
- Cc:
- Status: closed
- Component: extensions
- Estimated difficulty:
- Resolution: fixed
- Priority: major
- Milestone: someday
- Version: 4.8.x
- Changetime: 2013-02-13 13:19:06 UTC
- Created: 2013-02-13 13:01:48 UTC
- Keywords: stty termios
Description
stty.scm:401 in svn -r24492 contains:
((output)
(if flag
(set! oflag (bitwise-ior oflag (cadr x)))
(set! iflag (bitwise-and oflag (bitwise-not (cadr x)))))
(lp (cdr lst) flag))
Is the set! oflag intentional? looks like a typo...
Changes and comments
[2013-02-13 13:19:06 UTC] ashinn changed status from new to closed
[2013-02-13 13:19:06 UTC] ashinn set resolution to fixed
[2013-02-13 13:19:06 UTC] ashinn wrote:
Indeed, thanks!