summaryrefslogtreecommitdiffstats
path: root/lisplib.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-04-06 00:27:17 -0700
committerKaz Kylheku <kaz@kylheku.com>2018-04-06 00:27:17 -0700
commitb89b838bc7514d7b9a2685b291518a5783fa88dd (patch)
treefbe9caa13302b2a4cbcf63689bdb887640fdc712 /lisplib.c
parent13076d65002fdac45a34fd5cfec77716190024bd (diff)
downloadtxr-b89b838bc7514d7b9a2685b291518a5783fa88dd.tar.gz
txr-b89b838bc7514d7b9a2685b291518a5783fa88dd.tar.bz2
txr-b89b838bc7514d7b9a2685b291518a5783fa88dd.zip
autload: remove copy and pasted sock_load_init calls.
* lisplib.c (termios_instantiate, awk_instantiate, build_instantiate): Remove sock_load_init calls which make no sense in these functions. This is the result of flurried copy and pasting.
Diffstat (limited to 'lisplib.c')
-rw-r--r--lisplib.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lisplib.c b/lisplib.c
index aee8f6aa..cdb8e8fd 100644
--- a/lisplib.c
+++ b/lisplib.c
@@ -371,7 +371,6 @@ static val termios_instantiate(val set_fun)
{
funcall1(set_fun, nil);
load(format(nil, lit("~atermios"), stdlib_path, nao));
- sock_load_init();
return nil;
}
@@ -390,7 +389,6 @@ static val awk_instantiate(val set_fun)
{
funcall1(set_fun, nil);
load(format(nil, lit("~aawk"), stdlib_path, nao));
- sock_load_init();
return nil;
}
@@ -413,7 +411,6 @@ static val build_instantiate(val set_fun)
{
funcall1(set_fun, nil);
load(format(nil, lit("~abuild"), stdlib_path, nao));
- sock_load_init();
return nil;
}