aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/LuaSL
diff options
context:
space:
mode:
authorDavid Walter Seikel2016-01-17 16:40:55 +1000
committerDavid Walter Seikel2016-01-17 16:40:55 +1000
commit8bc187593dc437ee28459586d1ebeb8c4df504c4 (patch)
treeed6c0dafe6a786894a84deac1dd09070b6d96376 /src/LuaSL
parentCatch "return ..." as well as "function(...". (diff)
downloadSledjHamr-8bc187593dc437ee28459586d1ebeb8c4df504c4.zip
SledjHamr-8bc187593dc437ee28459586d1ebeb8c4df504c4.tar.gz
SledjHamr-8bc187593dc437ee28459586d1ebeb8c4df504c4.tar.bz2
SledjHamr-8bc187593dc437ee28459586d1ebeb8c4df504c4.tar.xz
Bunch of debuggingnesses.
Diffstat (limited to 'src/LuaSL')
-rw-r--r--src/LuaSL/LuaSL_main.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/LuaSL/LuaSL_main.c b/src/LuaSL/LuaSL_main.c
index 7e9d935..f8931e6 100644
--- a/src/LuaSL/LuaSL_main.c
+++ b/src/LuaSL/LuaSL_main.c
@@ -223,7 +223,7 @@ static Eina_Bool parser(void *data, Connection *connection, char *SID, char *com
223 gameGlobals *ourGlobals = data; 223 gameGlobals *ourGlobals = data;
224 char buf[PATH_MAX]; 224 char buf[PATH_MAX];
225 225
226//PD("COMMAND - %s", command); 226//PD("PARSE COMMAND - %s", command);
227 if (0 == strncmp(command, "compile(", 8)) 227 if (0 == strncmp(command, "compile(", 8))
228 { 228 {
229 char *temp; 229 char *temp;
@@ -279,7 +279,10 @@ PD("Running script %s", me->fileName);
279 ecore_main_loop_quit(); 279 ecore_main_loop_quit();
280 } 280 }
281 else 281 else
282 {
283//PD("Sending -> script %s : %s", SID, command);
282 send2script(SID, command); 284 send2script(SID, command);
285 }
283 286
284 return ECORE_CALLBACK_RENEW; 287 return ECORE_CALLBACK_RENEW;
285} 288}