Skip to content
GitLab
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
69a07550
Commit
69a07550
authored
Sep 29, 2016
by
Jonathan Wilkes
Browse files
fix #120: [struct float foo;] freezes Pd
parent
ae67006a
Changes
1
Hide whitespace changes
Inline
Side-by-side
pd/src/g_template.c
View file @
69a07550
...
...
@@ -730,7 +730,7 @@ int gtemplate_cancreate(t_symbol *templatename, int argc, t_atom *argv)
}
else
{
error("
error:
struct: bad array field arguments");
error("struct: bad array field arguments");
return 0;
}
}
...
...
@@ -743,14 +743,19 @@ int gtemplate_cancreate(t_symbol *templatename, int argc, t_atom *argv)
}
else
{
error("
error:
struct: bad canvas field arguments");
error("struct: bad canvas field arguments");
return 0;
}
}
else
{
error("struct: bad field type");
return 0;
}
}
if (argc)
{
error("
error:
struct: extra argument");
error("struct: extra argument");
return 0;
}
return 1;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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