summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2019-10-25 07:50:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2019-10-25 07:50:51 -0700
commit7747e38e6c0613db3a14cfdc38b2b7aa09acfa5a (patch)
treefb001d7761101054226703943ae087142de37d68
parent034ab7af4b19ab198d0b9c11c34764d751b3d249 (diff)
downloadtxr-7747e38e6c0613db3a14cfdc38b2b7aa09acfa5a.tar.gz
txr-7747e38e6c0613db3a14cfdc38b2b7aa09acfa5a.tar.bz2
txr-7747e38e6c0613db3a14cfdc38b2b7aa09acfa5a.zip
genvmop: bugfix: unbound variable.
* genvmop.txr: The supposedly unused %oc-list% symbol macro that was removed from the assembler internals is in fact referenced here, causing a failure. We macro-replace this remaining instance of it by hand.
-rw-r--r--genvmop.txr2
1 files changed, 1 insertions, 1 deletions
diff --git a/genvmop.txr b/genvmop.txr
index 3149e4b8..fa1af41c 100644
--- a/genvmop.txr
+++ b/genvmop.txr
@@ -1,6 +1,6 @@
@(in-package :sys)
@(mdo (find-struct-type 'assembler))
-@(bind oc @(keep-if .code %oc-list%))
+@(bind oc @(keep-if .code %oc-list-builder%.(get)))
@(next "vm.h")
@(collect)
@{copyright}