[PD-cvs] externals/zexy/src list2symbol.c,1.2,1.3

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Wed Jul 13 10:26:46 CEST 2005


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

Modified Files:
	list2symbol.c 
Log Message:
return "" if calculated length is <= 0 (and not just <0)


Index: list2symbol.c
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/list2symbol.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** list2symbol.c	19 May 2005 09:42:55 -0000	1.2
--- list2symbol.c	13 Jul 2005 08:26:44 -0000	1.3
***************
*** 63,67 ****
    }
  
!   if (length<0){
      outlet_symbol(x->x_obj.ob_outlet, gensym(""));
      return;
--- 63,67 ----
    }
  
!   if (length<=0){
      outlet_symbol(x->x_obj.ob_outlet, gensym(""));
      return;





More information about the Pd-cvs mailing list