[PD-cvs] pd/src x_list.c, 1.2.2.9.2.3, 1.2.2.9.2.4 x_qlist.c, 1.2.8.3, 1.2.8.3.2.1

Mathieu Bouchard matju at users.sourceforge.net
Wed Dec 20 09:14:27 CET 2006


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

Modified Files:
      Tag: desiredata
	x_list.c x_qlist.c 
Log Message:
removed unused vars


Index: x_qlist.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/x_qlist.c,v
retrieving revision 1.2.8.3
retrieving revision 1.2.8.3.2.1
diff -C2 -d -r1.2.8.3 -r1.2.8.3.2.1
*** x_qlist.c	30 Nov 2005 13:36:58 -0000	1.2.8.3
--- x_qlist.c	20 Dec 2006 08:14:25 -0000	1.2.8.3.2.1
***************
*** 33,37 ****
  static void *qlist_new( void)
  {
-     t_symbol *name, *filename = 0;
      t_qlist *x = (t_qlist *)pd_new(qlist_class);
      x->x_binbuf = binbuf_new();
--- 33,36 ----
***************
*** 240,244 ****
  static void *textfile_new( void)
  {
-     t_symbol *name, *filename = 0;
      t_textfile *x = (t_textfile *)pd_new(textfile_class);
      x->x_binbuf = binbuf_new();
--- 239,242 ----
***************
*** 257,262 ****
  static void textfile_bang(t_textfile *x)
  {
!     int argc = binbuf_getnatom(x->x_binbuf),
!         count, onset = x->x_onset, onset2;
      t_atom *argv = binbuf_getvec(x->x_binbuf);
      t_atom *ap = argv + onset, *ap2;
--- 255,259 ----
  static void textfile_bang(t_textfile *x)
  {
!     int argc = binbuf_getnatom(x->x_binbuf), onset = x->x_onset, onset2;
      t_atom *argv = binbuf_getvec(x->x_binbuf);
      t_atom *ap = argv + onset, *ap2;

Index: x_list.c
===================================================================
RCS file: /cvsroot/pure-data/pd/src/x_list.c,v
retrieving revision 1.2.2.9.2.3
retrieving revision 1.2.2.9.2.4
diff -C2 -d -r1.2.2.9.2.3 -r1.2.2.9.2.4
*** x_list.c	8 Dec 2006 06:41:55 -0000	1.2.2.9.2.3
--- x_list.c	20 Dec 2006 08:14:25 -0000	1.2.2.9.2.4
***************
*** 198,202 ****
  {
      t_atom *outv;
!     int n, outc = x->x_alist.l_n + argc;
      ATOMS_ALLOCA(outv, outc);
      atoms_copy(argc, argv, outv);
--- 198,202 ----
  {
      t_atom *outv;
!     int outc = x->x_alist.l_n + argc;
      ATOMS_ALLOCA(outv, outc);
      atoms_copy(argc, argv, outv);
***************
*** 210,214 ****
  {
      t_atom *outv;
!     int n, outc = x->x_alist.l_n + argc + 1;
      ATOMS_ALLOCA(outv, outc);
      SETSYMBOL(outv, s);
--- 210,214 ----
  {
      t_atom *outv;
!     int outc = x->x_alist.l_n + argc + 1;
      ATOMS_ALLOCA(outv, outc);
      SETSYMBOL(outv, s);
***************
*** 258,262 ****
  {
      t_atom *outv;
!     int n, outc = x->x_alist.l_n + argc;
      ATOMS_ALLOCA(outv, outc);
      alist_toatoms(&x->x_alist, outv);
--- 258,262 ----
  {
      t_atom *outv;
!     int outc = x->x_alist.l_n + argc;
      ATOMS_ALLOCA(outv, outc);
      alist_toatoms(&x->x_alist, outv);
***************
*** 270,274 ****
  {
      t_atom *outv;
!     int n, outc = x->x_alist.l_n + argc + 1;
      ATOMS_ALLOCA(outv, outc);
      alist_toatoms(&x->x_alist, outv);
--- 270,274 ----
  {
      t_atom *outv;
!     int outc = x->x_alist.l_n + argc + 1;
      ATOMS_ALLOCA(outv, outc);
      alist_toatoms(&x->x_alist, outv);





More information about the Pd-cvs mailing list