[PD-cvs] pd/src desire.c,1.1.2.137,1.1.2.138

Mathieu Bouchard matju at users.sourceforge.net
Sat Sep 2 20:00:46 CEST 2006


Update of /cvsroot/pure-data/pd/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11673

Modified Files:
      Tag: devel_0_39
	desire.c 
Log Message:
.


Index: desire.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/Attic/desire.c,v
retrieving revision 1.1.2.137
retrieving revision 1.1.2.138
diff -C2 -d -r1.1.2.137 -r1.1.2.138
*** desire.c	2 Sep 2006 09:01:39 -0000	1.1.2.137
--- desire.c	2 Sep 2006 18:00:43 -0000	1.1.2.138
***************
*** 48,52 ****
  #define template templaet
  
! #define glist_each(CHILD,GLIST) for(CHILD=(GLIST)->gl_list; CHILD; CHILD=CHILD->g_next)
  #define class_addmethod3(_cl,_ptr,_str,_sig) class_addmethod2(_cl,(t_method)_ptr,gensym(_str),_sig)
  
--- 48,53 ----
  #define template templaet
  
! #define glist_each(CHILD,GLIST)   for(CHILD=(GLIST)->gl_list; CHILD; CHILD=CHILD->g_next)
! #define glists_each(GLIST,GLISTS) for(GLIST=GLISTS; GLIST; GLIST=GLIST->gl_next)
[...2180 lines suppressed...]
  
  /* find the rtext that goes with a text item */
! t_rtext *glist_findrtext(t_glist *gl, t_text *who)
! {
      t_rtext *x = gl->gl_editor->e_rtext;
      while (x && x->x_text != who) x = x->x_next;
      if (!x) bug("glist_findrtext");
!     return (x);
  }
  
--- 9838,9846 ----
  
  /* find the rtext that goes with a text item */
! t_rtext *glist_findrtext(t_glist *gl, t_text *who) {
      t_rtext *x = gl->gl_editor->e_rtext;
      while (x && x->x_text != who) x = x->x_next;
      if (!x) bug("glist_findrtext");
!     return x;
  }
  





More information about the Pd-cvs mailing list