From 0b470032b50cab4270ef8657aed6cd2cf2a14838 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/SWIG@441 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/Modules1.1/guile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules1.1/guile.cxx b/Source/Modules1.1/guile.cxx index b04fa28fc..b47bd5d63 100644 --- a/Source/Modules1.1/guile.cxx +++ b/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";