Opened 11 years ago

Closed 11 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...

Change History (1)

comment:1 Changed 11 years ago by Alex Shinn

Resolution: fixed
Status: newclosed

Indeed, thanks!

Note: See TracTickets for help on using tickets.