[PD-cvs] externals/zexy/src msgfile.c,1.11,1.12

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Thu Jun 8 12:45:07 CEST 2006


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23371/src

Modified Files:
	msgfile.c 
Log Message:
fixed search

Index: msgfile.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/msgfile.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** msgfile.c	7 Jun 2006 15:24:37 -0000	1.11
--- msgfile.c	8 Jun 2006 10:45:04 -0000	1.12
***************
*** 436,440 ****
    t_msglist *found = 0;
    t_msglist *cur=x->current;
-   ZEXY_USEVAR(s);
  
    while (cur) {
--- 436,439 ----
***************
*** 444,452 ****
      t_atom *this = cur->thislist;
  
!     if(0==this)continue;
      
      if (ac < n) n = ac;
  
!     while (n--) {
        if ( (strcmp("*", atom_getsymbol(that)->s_name) && atomcmp(that, this)) ) {
  	equal = 0;
--- 443,454 ----
      t_atom *this = cur->thislist;
  
!     if(0==this){
!       cur=cur->next;
!       continue;
!     }
      
      if (ac < n) n = ac;
  
!     while (n-->0) {
        if ( (strcmp("*", atom_getsymbol(that)->s_name) && atomcmp(that, this)) ) {
  	equal = 0;





More information about the Pd-cvs mailing list