From f89a4851bdee11bb3adbd189adce576ba35e8a49 Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Mon, 10 Jul 2000 22:29:52 +0000 Subject: [PATCH] Fixed Printv problem. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@558 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/SWIG1.1/emit.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/SWIG1.1/emit.cxx b/Source/SWIG1.1/emit.cxx index 5f587d875..32e5b495b 100644 --- a/Source/SWIG1.1/emit.cxx +++ b/Source/SWIG1.1/emit.cxx @@ -346,12 +346,12 @@ void emit_func_call(char *decl, DataType *t, ParmList *l, Wrapper *f) { if ((tm = typemap_lookup((char*)"except",typemap_lang,t,decl,(char*)"_result",(char*)""))) { // Found a type-specific mapping - Printv(exc,tm); + Printv(exc,tm,0); Replace(exc,"$function",fcall,DOH_REPLACE_ANY); Replace(exc,"$name",decl,DOH_REPLACE_ANY); Printv(f->code,exc,0); } else if ((tm = fragment_lookup((char*)"except",typemap_lang, t->id))) { - Printv(exc,tm); + Printv(exc,tm,0); Replace(exc,"$function",fcall,DOH_REPLACE_ANY); Replace(exc,"$name",decl,DOH_REPLACE_ANY); Printv(f->code,exc,0);