Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
David MacDonald
purr-data
Commits
e9556bd3
Commit
e9556bd3
authored
Aug 26, 2013
by
Ivica Bukvic
Browse files
fixed route regression
parent
6f39aaa1
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/x_connective.c
View file @
e9556bd3
...
...
@@ -581,6 +581,7 @@ static void route_anything(t_route *x, t_symbol *sel, int argc, t_atom *argv)
static
void
route_list
(
t_route
*
x
,
t_symbol
*
sel
,
int
argc
,
t_atom
*
argv
)
{
//fprintf(stderr,"route_list\n");
t_routeelement
*
e
;
int
nelement
;
if
(
x
->
x_type
==
A_FLOAT
||
x
->
x_mixed
)
...
...
@@ -600,7 +601,7 @@ static void route_list(t_route *x, t_symbol *sel, int argc, t_atom *argv)
if
(
argc
>
1
)
outlet_list
(
e
->
e_outlet
,
0
,
argc
-
1
,
argv
+
1
);
else
outlet_
list
(
e
->
e_outlet
,
0
,
argc
,
argv
);
outlet_
bang
(
e
->
e_outlet
);
}
return
;
}
...
...
@@ -639,7 +640,7 @@ static void route_list(t_route *x, t_symbol *sel, int argc, t_atom *argv)
{
if
(
e
->
e_w
.
w_symbol
==
&
s_float
)
{
outlet_
float
(
e
->
e_outlet
,
argv
[
0
].
a_w
.
w_float
);
outlet_
bang
(
e
->
e_outlet
);
return
;
}
}
...
...
@@ -650,7 +651,7 @@ static void route_list(t_route *x, t_symbol *sel, int argc, t_atom *argv)
{
if
(
e
->
e_w
.
w_symbol
==
&
s_symbol
)
{
outlet_
symbol
(
e
->
e_outlet
,
argv
[
0
].
a_w
.
w_symbol
);
outlet_
bang
(
e
->
e_outlet
);
return
;
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment