From b259d3a83953e2f02a11d9dbecd4a043b715beb4 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 25 Mar 2017 07:11:37 -0700 Subject: termios: broken go-cbreak method. * share/txr/stdlib/termios.tl (termios go-raw): Fix call to nonexistent method. --- share/txr/stdlib/termios.tl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/txr/stdlib/termios.tl b/share/txr/stdlib/termios.tl index bdee598c..090fed86 100644 --- a/share/txr/stdlib/termios.tl +++ b/share/txr/stdlib/termios.tl @@ -62,7 +62,7 @@ (defmeth termios go-cbreak (tio) tio.(clear-iflags icrnl) tio.(clear-lflags icanon) - tio.(set-lfags isig) + tio.(set-lflags isig) (set tio.[cc vmin] 1) (set tio.[cc vtime] 0)) -- cgit v1.2.3