summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-03-25 07:11:37 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-03-25 07:11:37 -0700
commitff5c82b409332c4780c9c013c963588ed8f5fbd8 (patch)
tree323c4d746c19ddaa5a383babf1b8003567134028
parent49de7a058fbd140d08a0fa31b494a381fa5603c2 (diff)
downloadtxr-ff5c82b409332c4780c9c013c963588ed8f5fbd8.tar.gz
txr-ff5c82b409332c4780c9c013c963588ed8f5fbd8.tar.bz2
txr-ff5c82b409332c4780c9c013c963588ed8f5fbd8.zip
termios: broken go-cbreak method.
* share/txr/stdlib/termios.tl (termios go-raw): Fix call to nonexistent method.
-rw-r--r--share/txr/stdlib/termios.tl2
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))