Move ++perk to ++peel; change jets.

This commit is contained in:
C. Guy Yarvin 2016-10-27 17:26:40 -07:00
parent bbe35d6c1d
commit d40015b808
7 changed files with 13 additions and 13 deletions

View File

@ -333,7 +333,7 @@ J_F_OFILES_UT=\
jets/f/ut_mull.o \
jets/f/ut_nest.o \
jets/f/ut_peek.o \
jets/f/ut_perk.o \
jets/f/ut_peel.o \
jets/f/ut_play.o \
jets/f/ut_repo.o \
jets/f/ut_rest.o \

View File

@ -237,7 +237,7 @@
u3_noun u3qfu_nost(u3_noun, u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_orth(u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_peek(u3_noun, u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_perk(u3_noun, u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_peel(u3_noun, u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_play(u3_noun, u3_noun, u3_noun);
u3_noun u3qfu_repo(u3_noun, u3_noun);
u3_noun u3qfu_rest(u3_noun, u3_noun, u3_noun);

View File

@ -250,7 +250,7 @@
u3_noun u3wfu_mull(u3_noun);
u3_noun u3wfu_nest(u3_noun);
u3_noun u3wfu_peek(u3_noun);
u3_noun u3wfu_perk(u3_noun);
u3_noun u3wfu_peel(u3_noun);
u3_noun u3wfu_play(u3_noun);
u3_noun u3wfu_repo(u3_noun);
u3_noun u3wfu_rest(u3_noun);

View File

@ -207,7 +207,7 @@
return pro;
}
else {
u3_noun pec = u3qfu_perk(van, sut, way, pq_sut);
u3_noun pec = u3qfu_peel(van, sut, way, pq_sut);
u3_noun pro;
if ( c3n == u3h(pec) ) {

View File

@ -83,7 +83,7 @@
u3_atom lat = u3qc_mas(axe);
if ( 3 == now ) {
u3_noun pec = u3qfu_perk(van, sut, way, pq_sut);
u3_noun pec = u3qfu_peel(van, sut, way, pq_sut);
u3_noun sam = u3h(pec);
u3_noun con = u3t(pec);

View File

@ -1,4 +1,4 @@
/* j/6/ut_perk.c
/* j/6/ut_peel.c
**
*/
#include "all.h"
@ -7,7 +7,7 @@
/* logic
*/
u3_noun
_cqfu_perk(u3_noun van,
_cqfu_peel(u3_noun van,
u3_noun sut,
u3_noun way,
u3_noun met)
@ -28,7 +28,7 @@
/* boilerplate
*/
u3_noun
u3wfu_perk(u3_noun cor)
u3wfu_peel(u3_noun cor)
{
u3_noun sut, way, met, van;
@ -40,16 +40,16 @@
{
return u3m_bail(c3__fail);
} else {
return _cqfu_perk(van, sut, way, met);
return _cqfu_peel(van, sut, way, met);
}
}
u3_noun
u3qfu_perk(u3_noun van,
u3qfu_peel(u3_noun van,
u3_noun sut,
u3_noun way,
u3_noun met)
{
return _cqfu_perk(van, sut, way, met);
return _cqfu_peel(van, sut, way, met);
}

View File

@ -360,7 +360,7 @@ static u3j_harm _mood__hoon__ut_mint_a[] = {{".2", u3wfu_mint}, {}};
static u3j_harm _mood__hoon__ut_mull_a[] = {{".2", u3wfu_mull}, {}};
static u3j_harm _mood__hoon__ut_nest_a[] = {{".2", u3wfu_nest}, {}};
static u3j_harm _mood__hoon__ut_peek_a[] = {{".2", u3wfu_peek}, {}};
static u3j_harm _mood__hoon__ut_perk_a[] = {{".2", u3wfu_perk}, {}};
static u3j_harm _mood__hoon__ut_peel_a[] = {{".2", u3wfu_peel}, {}};
static u3j_harm _mood__hoon__ut_play_a[] = {{".2", u3wfu_play}, {}};
static u3j_harm _mood__hoon__ut_rest_a[] = {{".2", u3wfu_rest}, {}};
static u3j_harm _mood__hoon__ut_toss_a[] = {{".2", u3wfu_toss}, {}};
@ -379,7 +379,7 @@ static u3j_core _mood__hoon__ut_d[] =
{ "mull", _mood__hoon__ut_mull_a },
{ "nest", _mood__hoon__ut_nest_a },
{ "peek", _mood__hoon__ut_peek_a },
{ "perk", _mood__hoon__ut_perk_a },
{ "peel", _mood__hoon__ut_peel_a },
{ "play", _mood__hoon__ut_play_a },
{ "rest", _mood__hoon__ut_rest_a },
{ "toss", _mood__hoon__ut_toss_a },