[PD-cvs] externals/grill/pool/source pool.cpp,1.15,1.16

Thomas Grill xovo at users.sourceforge.net
Tue Apr 19 15:28:16 CEST 2005


Update of /cvsroot/pure-data/externals/grill/pool/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22261/source

Modified Files:
	pool.cpp 
Log Message:
more symbol escaping


Index: pool.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/pool/source/pool.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** pool.cpp	19 Apr 2005 13:08:32 -0000	1.15
--- pool.cpp	19 Apr 2005 13:28:13 -0000	1.16
***************
*** 575,579 ****
          os << '"';
          for(; *c; ++c) {
!             if(isspace(*c) || *c == '\\' || *c == ',')
                  os << '\\';
  	        os << *c;
--- 575,579 ----
          os << '"';
          for(; *c; ++c) {
!             if(isspace(*c) || *c == '\\' || *c == ',' || *c == '"')
                  os << '\\';
  	        os << *c;





More information about the Pd-cvs mailing list