From bf71e93c27db661f3596b1e781ea2d632c1680ba Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 1 May 2005 03:12:05 +0000 Subject: better c++ compliance fixes for MSVC6 restructured TableMap type (doesn't own pointers any more) svn path=/trunk/; revision=2861 --- externals/grill/flext/source/flattr_ed.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'externals/grill/flext/source/flattr_ed.cpp') diff --git a/externals/grill/flext/source/flattr_ed.cpp b/externals/grill/flext/source/flattr_ed.cpp index dc2cc9d1..e499b9d7 100644 --- a/externals/grill/flext/source/flattr_ed.cpp +++ b/externals/grill/flext/source/flattr_ed.cpp @@ -88,7 +88,11 @@ static void tclscript() "proc flext_escatoms {lst} {\n" "set tmp {}\n" "foreach a $lst {\n" +// "set a [regsub {\\\\} $a \\\\\\\\]\n" // replace \ with \\ ... must be first "set a [regsub {\\$} $a \\\\$]\n" // replace $ with \$ +// "set a [regsub {\\{} $a \\\\\\{]\n" // replace { with \{ +// "set a [regsub {\\}} $a \\\\\\}]\n" // replace } with \} +// "set a [regsub {\\ } $a \\\\\\ ]\n" // replace space with \space "set a [regsub {,} $a \\\\,]\n" // replace , with \, "set a [regsub {;} $a \\\\\\;]\n" // replace ; with \; "lappend tmp $a\n" -- cgit v1.2.1