From 8dcfa8be65c468f435ab6b639a4a331ad83400a5 Mon Sep 17 00:00:00 2001 From: Thien-Thi Nguyen Date: Thu, 11 May 2000 08:57:11 +0000 Subject: [PATCH] (GUILE::create_function): Void functions now return # instead of #. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@441 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- SWIG/Source/Modules1.1/guile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SWIG/Source/Modules1.1/guile.cxx b/SWIG/Source/Modules1.1/guile.cxx index b04fa28fc..b47bd5d63 100644 --- a/SWIG/Source/Modules1.1/guile.cxx +++ b/SWIG/Source/Modules1.1/guile.cxx @@ -553,7 +553,7 @@ GUILE::create_function (char *name, char *iname, DataType *d, ParmList *l) // Now have return value, figure out what to do with it. if (d->type == T_VOID) - f.code << tab4 << "gswig_result = GH_NOT_PASSED;\n"; + f.code << tab4 << "gswig_result = GH_UNSPECIFIED;\n"; else if ((tm = typemap_lookup ("out", typemap_lang, d, name, "_result", "gswig_result", &f))) { f.code << tm << "\n";