diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-04-06 00:27:17 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-04-06 00:27:17 -0700 |
commit | b89b838bc7514d7b9a2685b291518a5783fa88dd (patch) | |
tree | fbe9caa13302b2a4cbcf63689bdb887640fdc712 /lisplib.c | |
parent | 13076d65002fdac45a34fd5cfec77716190024bd (diff) | |
download | txr-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.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -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; } |