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 | 86316803f055e6a1900a8f94020a9e5238ddd143 (patch) | |
tree | fbe9caa13302b2a4cbcf63689bdb887640fdc712 | |
parent | 4b64737db267d02b4319f02e6cb95a3a5fcf835c (diff) | |
download | txr-86316803f055e6a1900a8f94020a9e5238ddd143.tar.gz txr-86316803f055e6a1900a8f94020a9e5238ddd143.tar.bz2 txr-86316803f055e6a1900a8f94020a9e5238ddd143.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.
-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; } |