From ed932acb5860bf8b9296169676499562a55d139e Mon Sep 17 00:00:00 2001 From: Miller Puckette Date: Mon, 6 Sep 2004 20:20:36 +0000 Subject: checking in version 0.38test5. Oops, I realize I forgot some more nice files, will add them and re-commit. svn path=/trunk/; revision=2010 --- pd/src/x_interface.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pd/src/x_interface.c') diff --git a/pd/src/x_interface.c b/pd/src/x_interface.c index 068b0bbc..19c44962 100644 --- a/pd/src/x_interface.c +++ b/pd/src/x_interface.c @@ -44,8 +44,8 @@ static void print_list(t_print *x, t_symbol *s, int argc, t_atom *argv) char buf[80]; if (argc && argv->a_type != A_SYMBOL) startpost("%s:", x->x_sym->s_name); else startpost("%s: %s", x->x_sym->s_name, - (argc > 1 ? s_list.s_name : (argc == 1 ? s_symbol.s_name : - s_bang.s_name))); + (argc > 1 ? s_list.s_name : (argc == 1 ? s_symbol.s_name : + s_bang.s_name))); postatom(argc, argv); endpost(); } @@ -62,7 +62,7 @@ static void print_anything(t_print *x, t_symbol *s, int argc, t_atom *argv) static void print_setup(void) { print_class = class_new(gensym("print"), (t_newmethod)print_new, 0, - sizeof(t_print), 0, A_DEFSYM, 0); + sizeof(t_print), 0, A_DEFSYM, 0); class_addbang(print_class, print_bang); class_addfloat(print_class, print_float); class_addpointer(print_class, print_pointer); -- cgit v1.2.1