Opened 12 years ago
Closed 12 years ago
#982 closed defect (fixed)
stty output flags manipulate input flags in termios struct
Reported by: | Christian Kellermann | Owned by: | Alex Shinn |
---|---|---|---|
Priority: | major | Milestone: | someday |
Component: | extensions | Version: | 4.8.x |
Keywords: | stty termios | Cc: | |
Estimated difficulty: |
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...
Note: See
TracTickets for help on using
tickets.
Indeed, thanks!