From 47224ab88f4721cd1f0b29698a0c135ab4d7e46f Mon Sep 17 00:00:00 2001 From: Joe Bryan Date: Thu, 19 Nov 2020 15:43:27 -0800 Subject: [PATCH] u3: adds ghetto +mook replacement --- pkg/urbit/noun/manage.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkg/urbit/noun/manage.c b/pkg/urbit/noun/manage.c index 383304c2fa..57f697b7f9 100644 --- a/pkg/urbit/noun/manage.c +++ b/pkg/urbit/noun/manage.c @@ -1215,6 +1215,32 @@ u3m_soft(c3_w mil_w, // XX produce specific error motes instead of %2? // if ( 0 == u3A->roc ) { + + { + u3_noun tax = u3t(u3t(why)); + + u3m_p("mote", u3h(u3t(why))); + + while ( u3_nul != tax ) { + u3_noun dat, mot, val; + u3x_cell(tax, &dat, &tax); + + if ( c3y == u3r_cell(dat, &mot, &val) ) { + if ( c3__spot == mot ) { + u3m_p("tax", val); + } + else if ( (c3__mean == mot) + && (c3y == u3a_is_atom(val)) ) + { + u3m_p("men", val); + } + else { + u3m_p("mot", mot); + } + } + } + } + u3z(why); return u3nc(c3__fail, u3_nul); }