From 5f66d51448c6dde6b84c644924cac96c92a8d2ac Mon Sep 17 00:00:00 2001 From: Jonathan Wilkes <jon.w.wilkes@gmail.com> Date: Mon, 7 Nov 2016 17:14:10 -0500 Subject: [PATCH] stray line where I forgot to change "data" to "d" that should have been part of bf11107bedbf1257a35455666472c098065cb049 --- pd/src/g_template.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pd/src/g_template.c b/pd/src/g_template.c index 80b1eae14..0afbdffaa 100644 --- a/pd/src/g_template.c +++ b/pd/src/g_template.c @@ -1873,7 +1873,7 @@ void svg_sendupdate(t_svg *x, t_canvas *c, t_symbol *s, gui_end_vmess(); } } - else if (s == gensym("data")) + else if (s == gensym("d")) { char tagbuf[MAXPDSTRING]; sprintf(tagbuf, "draw%lx.%lx", @@ -2188,9 +2188,9 @@ void svg_data(t_svg *x, t_symbol *s, int argc, t_atom *argv) x->x_type != gensym("polygon")) return; /* "points" for polys... */ - if (s == gensym("data") && x->x_type != gensym("path")) + if (s == gensym("d") && x->x_type != gensym("path")) return; - /* and "data" for paths */ + /* and "d" for paths */ if (x->x_type == gensym("path")) { if (s == gensym("points")) return; -- GitLab