~ chicken-core (chicken-5) 948ddab6473b862a68d2322f455355a64089a703
commit 948ddab6473b862a68d2322f455355a64089a703 Author: Evan Hanson <evhan@foldling.org> AuthorDate: Sat Jan 2 11:37:01 2016 +1300 Commit: Evan Hanson <evhan@foldling.org> CommitDate: Tue Mar 8 22:52:32 2016 +1300 Tiny wording change to dload debug message These aren't really "modules" as CHICKEN uses the term. diff --git a/runtime.c b/runtime.c index 7f5aa90d..f187de2e 100644 --- a/runtime.c +++ b/runtime.c @@ -12122,7 +12122,7 @@ void C_ccall dload_2(C_word c, C_word *av0) current_module_handle = handle; if(debug_mode) { - C_dbg(C_text("debug"), C_text("loading compiled module `%s' (handle is " UWORD_FORMAT_STRING ")\n"), + C_dbg(C_text("debug"), C_text("loading compiled library %s (" UWORD_FORMAT_STRING ")\n"), current_module_name, (C_uword)current_module_handle); } @@ -12178,7 +12178,7 @@ void C_ccall dload_2(C_word c, C_word *av0) current_module_handle = handle; if(debug_mode) { - C_dbg(C_text("debug"), C_text("loading compiled module `%s' (handle is " UWORD_FORMAT_STRING ")\n"), + C_dbg(C_text("debug"), C_text("loading compiled library %s (" UWORD_FORMAT_STRING ")\n"), current_module_name, (C_uword)current_module_handle); } @@ -12226,7 +12226,7 @@ void C_ccall dload_2(C_word c, C_word *av0) current_module_handle = handle; if(debug_mode) { - C_dbg(C_text("debug"), C_text("loading compiled module `%s' (handle is " UWORD_FORMAT_STRING ")\n"), + C_dbg(C_text("debug"), C_text("loading compiled library %s (" UWORD_FORMAT_STRING ")\n"), current_module_name, (C_uword)current_module_handle); }Trap