From 7537c7e8eaadb330e282e98b9e02899c2d684e34 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Thu, 20 Feb 2003 19:46:46 +0000 Subject: [PATCH] Fixed [ 605162 ] Typemap local variables. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@4367 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Swig/typemap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Source/Swig/typemap.c b/SWIG/Source/Swig/typemap.c index fbb5dddbd..b65d9b515 100644 --- a/SWIG/Source/Swig/typemap.c +++ b/SWIG/Source/Swig/typemap.c @@ -1014,7 +1014,7 @@ static void typemap_locals(DOHString *s, ParmList *l, Wrapper *f, int argnum) { } if (!isglobal) { /* Substitute */ - Replace(s,pn,new_name,DOH_REPLACE_ID); + Replace(s,pn,new_name,DOH_REPLACE_ID | DOH_REPLACE_NOQUOTE); } } }