Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1784
Modified Files: Tag: desiredata kernel.c Log Message: cleanup
Index: kernel.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/Attic/kernel.c,v retrieving revision 1.1.2.20 retrieving revision 1.1.2.21 diff -C2 -d -r1.1.2.20 -r1.1.2.21 *** kernel.c 31 Dec 2006 19:21:40 -0000 1.1.2.20 --- kernel.c 3 Jan 2007 03:55:32 -0000 1.1.2.21 *************** *** 28,31 **** --- 28,34 ---- #endif
+ #define a_float a_w.w_float + #define a_symbol a_w.w_symbol + /* T.Grill - bit alignment for signal vectors (must be a multiple of 8!) */ /* if undefined no alignment occurs */ *************** *** 132,136 **** [...1055 lines suppressed...] if (classname == gensym("table")) classname = gensym("TABLE"); *************** *** 2594,2601 **** t_atom *a1 = &inbuf->vec[indexin + nmatched], *a2 = &searchbuf->vec[nmatched]; if (a1->a_type != a2->a_type || ! a1->a_type == A_SYMBOL && a1->a_w.w_symbol != a2->a_w.w_symbol || ! a1->a_type == A_FLOAT && a1->a_w.w_float != a2->a_w.w_float || a1->a_type == A_DOLLAR && a1->a_w.w_index != a2->a_w.w_index || ! a1->a_type == A_DOLLSYM && a1->a_w.w_symbol != a2->a_w.w_symbol) goto nomatch; } return 1; --- 2585,2592 ---- t_atom *a1 = &inbuf->vec[indexin + nmatched], *a2 = &searchbuf->vec[nmatched]; if (a1->a_type != a2->a_type || ! a1->a_type == A_SYMBOL && a1->a_symbol != a2->a_symbol || ! a1->a_type == A_FLOAT && a1->a_float != a2->a_float || a1->a_type == A_DOLLAR && a1->a_w.w_index != a2->a_w.w_index || ! a1->a_type == A_DOLLSYM && a1->a_symbol != a2->a_symbol) goto nomatch; } return 1;