summaryrefslogtreecommitdiffstats
path: root/autoload.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2022-02-19 08:52:59 -0800
committerKaz Kylheku <kaz@kylheku.com>2022-02-19 08:52:59 -0800
commitcaf46a07285ce2b214fdfce1b2af3375966c52f9 (patch)
treeedd6620d7e47e331a71e4630a55b49e9e55c50b6 /autoload.c
parent834ebaf314521b9b61a2e9f0f3f3afa8b16990bb (diff)
downloadtxr-caf46a07285ce2b214fdfce1b2af3375966c52f9.tar.gz
txr-caf46a07285ce2b214fdfce1b2af3375966c52f9.tar.bz2
txr-caf46a07285ce2b214fdfce1b2af3375966c52f9.zip
autoload: move termios material into termios module.
* autoload.c (termios_set_entries, termios_instantiate): Static functions removed from here. (autoload_init): autoload_reg call for above functions removed from here. * termios.c (termios_set_entries, termios_instantiate): Static functions moved here. (termios_init): autoload_reg call moved here.
Diffstat (limited to 'autoload.c')
-rw-r--r--autoload.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/autoload.c b/autoload.c
index 22185ba1..33029170 100644
--- a/autoload.c
+++ b/autoload.c
@@ -394,28 +394,6 @@ static val sock_instantiate(void)
#endif
-#if HAVE_TERMIOS
-
-static val termios_set_entries(val fun)
-{
- val slname[] = {
- lit("set-iflags"), lit("set-oflags"), lit("set-cflags"), lit("set-lflags"),
- lit("clear-iflags"), lit("clear-oflags"), lit("clear-cflags"), lit("clear-lflags"),
- lit("go-raw"), lit("go-cbreak"), lit("go-canon"),
- lit("string-encode"), lit("string-decode"), nil
- };
- autoload_set(al_slot, slname, fun);
- return nil;
-}
-
-static val termios_instantiate(void)
-{
- load(scat2(stdlib_path, lit("termios")));
- return nil;
-}
-
-#endif
-
static val awk_set_entries(val fun)
{
val sys_sname[] = {
@@ -1027,9 +1005,6 @@ void autoload_init(void)
#if HAVE_SOCKETS
autoload_reg(sock_instantiate, sock_set_entries);
#endif
-#if HAVE_TERMIOS
- autoload_reg(termios_instantiate, termios_set_entries);
-#endif
autoload_reg(awk_instantiate, awk_set_entries);
autoload_reg(build_instantiate, build_set_entries);
autoload_reg(trace_instantiate, trace_set_entries);