diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2017-03-25 07:11:37 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2017-03-25 07:11:37 -0700 |
commit | b259d3a83953e2f02a11d9dbecd4a043b715beb4 (patch) | |
tree | 323c4d746c19ddaa5a383babf1b8003567134028 /share | |
parent | 0b13aa8d9af1c217760321a6f0e86620a9fa811a (diff) | |
download | txr-b259d3a83953e2f02a11d9dbecd4a043b715beb4.tar.gz txr-b259d3a83953e2f02a11d9dbecd4a043b715beb4.tar.bz2 txr-b259d3a83953e2f02a11d9dbecd4a043b715beb4.zip |
termios: broken go-cbreak method.
* share/txr/stdlib/termios.tl (termios go-raw):
Fix call to nonexistent method.
Diffstat (limited to 'share')
-rw-r--r-- | share/txr/stdlib/termios.tl | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |