[PD-cvs] pd/src m_class.c,1.1.1.2.2.6,1.1.1.2.2.7

Mathieu Bouchard matju at users.sourceforge.net
Mon Oct 25 17:29:57 CEST 2004


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

Modified Files:
      Tag: devel_0_37
	m_class.c 
Log Message:
class_new(): now records in class_list


Index: m_class.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/m_class.c,v
retrieving revision 1.1.1.2.2.6
retrieving revision 1.1.1.2.2.7
diff -C2 -d -r1.1.1.2.2.6 -r1.1.1.2.2.7
*** m_class.c	25 Oct 2004 15:19:30 -0000	1.1.1.2.2.6
--- m_class.c	25 Oct 2004 15:29:55 -0000	1.1.1.2.2.7
***************
*** 258,261 ****
--- 258,267 ----
      post("class: %s", c->c_name->s_name);
  #endif
+     {/*matju*/
+         t_class_list *tc = (t_class_list *) malloc(sizeof(t_class_list));
+         tc->head = c;
+         tc->tail = class_list;
+         class_list=tc;
+     }
      return (c);
  }





More information about the Pd-cvs mailing list