diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-11-14 20:52:12 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-11-14 20:52:12 -0800 |
commit | 75f37374682fe01685ed4c0df0b068e475c864ec (patch) | |
tree | 9e20de26ef9657fcc6b6dd73a3b74935e642c9a1 | |
parent | 183331a44c2d684bbc40ed94e6fcde75db7f7845 (diff) | |
download | txr-75f37374682fe01685ed4c0df0b068e475c864ec.tar.gz txr-75f37374682fe01685ed4c0df0b068e475c864ec.tar.bz2 txr-75f37374682fe01685ed4c0df0b068e475c864ec.zip |
Bugfix: missing macros in autoload.
* lisplib.c (struct_set_entries): Bugfix: missing
meth, umeth and defmeth.
-rw-r--r-- | lisplib.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -173,7 +173,8 @@ static val path_test_instantiate(val set_fun) static val struct_set_entries(val dlt, val fun) { val name[] = { - lit("defstruct"), lit("qref"), lit("new"), nil + lit("defstruct"), lit("qref"), lit("new"), lit("meth"), + lit("umeth"), lit("defmeth"), nil }; set_dlt_entries(dlt, name, fun); |