Skip to content
Snippets Groups Projects
Commit 24f56deb authored by Jonathan Wilkes's avatar Jonathan Wilkes
Browse files

change setup symbols to match the hexmunge format

parent 397571d0
No related branches found
No related tags found
2 merge requests!114External tests,!113WIP: External tests revised
......@@ -283,7 +283,7 @@ static void andand_tilde_help(t_object*x)
post("\n"HEARTSYMBOL " &&~\t\t:: logical AND operation on 2 signals");
}
void setup_0x260x260x7e(void)
void setup_0x260x26_tilde(void)
{
andand_tilde_class = class_new(gensym("&&~"),
(t_newmethod)andand_tilde_new, 0,
......
......@@ -239,7 +239,7 @@ static void lt_tilde_help(t_object*x)
post("\n"HEARTSYMBOL " <~\t\t:: compare 2 signals");
}
void setup_0x3c0x7e(void)
void setup_0x3c_tilde(void)
{
lt_tilde_class = class_new(gensym("<~"), (t_newmethod)lt_tilde_new, 0,
sizeof(t_lt_tilde), 0, A_GIMME, 0);
......
......@@ -238,7 +238,7 @@ static void eq_tilde_help(t_object*x)
{
post("\n"HEARTSYMBOL " &&~\t\t:: test 2 signals for equality");
}
void setup_0x3d0x3d0x7e(void)
void setup_0x3d0x3d_tilde(void)
{
eq_tilde_class = class_new(gensym("==~"), (t_newmethod)eq_tilde_new, 0,
sizeof(t_eq_tilde), 0, A_GIMME, 0);
......
......@@ -242,7 +242,7 @@ static void gt_tilde_help(t_object*x)
post("\n"HEARTSYMBOL " >~\t\t:: compare 2 signals");
}
void setup_0x3e0x7e(void)
void setup_0x3e_tilde(void)
{
gt_tilde_class = class_new(gensym(">~"), (t_newmethod)gt_tilde_new, 0,
sizeof(t_gt_tilde), 0, A_GIMME, 0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment