From 75f37374682fe01685ed4c0df0b068e475c864ec Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sat, 14 Nov 2015 20:52:12 -0800 Subject: Bugfix: missing macros in autoload. * lisplib.c (struct_set_entries): Bugfix: missing meth, umeth and defmeth. --- lisplib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisplib.c b/lisplib.c index a8de4a36..46d99305 100644 --- a/lisplib.c +++ b/lisplib.c @@ -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); -- cgit v1.2.3