From e46f6aa3cf91b08c9d0faebd46a7a506bd138e9e Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 9 Aug 2014 20:10:42 +1000 Subject: Move "Compiling ..." message to the compiler. --- src/LuaSL/LuaSL_compile.c | 2 ++ src/LuaSL/LuaSL_main.c | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/LuaSL/LuaSL_compile.c b/src/LuaSL/LuaSL_compile.c index 94b354b..94d7f9b 100644 --- a/src/LuaSL/LuaSL_compile.c +++ b/src/LuaSL/LuaSL_compile.c @@ -2238,6 +2238,8 @@ boolean compileLSL(LuaSL_compiler *compiler) compiler->ignorable = eina_strbuf_new(); #endif + PI("Compiling %s.", compiler->compiler.file); + compiler->file = fopen(compiler->compiler.file, "r"); if (NULL == compiler->file) { diff --git a/src/LuaSL/LuaSL_main.c b/src/LuaSL/LuaSL_main.c index 0378792..2955ca4 100644 --- a/src/LuaSL/LuaSL_main.c +++ b/src/LuaSL/LuaSL_main.c @@ -236,7 +236,6 @@ static Eina_Bool _data(void *data, int type __UNUSED__, Ecore_Con_Event_Client_D temp[0] = '\0'; name = &file[strlen(prefix_data_get())]; - PD("Compiling %s, %s.", SID, name); compiler->compiler.file = strdup(file); compiler->compiler.SID = strdup(SID); compiler->compiler.client = ev->client; -- cgit v1.1