From 0f94980db9a7395fb1284aa6c3ad451b49150f11 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sat, 10 Jul 2004 13:42:18 +0000 Subject: [PATCH] Use scm_from_int instead of SCM_MAKINUM. --- libguile/cpp_cnvt.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libguile/cpp_cnvt.awk b/libguile/cpp_cnvt.awk index 128136fa2..1e6c09436 100644 --- a/libguile/cpp_cnvt.awk +++ b/libguile/cpp_cnvt.awk @@ -2,6 +2,6 @@ # in Guile. { print "#ifdef " $0; -print "scm_c_define (\""$0"\", SCM_MAKINUM ("$0"));"; +print "scm_c_define (\""$0"\", scm_from_int ("$0"));"; print "#endif" }