diff options
| author | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-22 01:03:22 +0000 |
|---|---|---|
| committer | Maurus Cuelenaere <mcuelenaere@gmail.com> | 2009-05-22 01:03:22 +0000 |
| commit | fb6b15980a268e95523e63c37fe105a9640191b5 (patch) | |
| tree | 83098c325ee03a3a9b23677ba26033f3aec62aac /apps/plugins/lua/rocklua.c | |
| parent | 2cd4a94bdc4977e1ff1f26d1e911c1d826ef2f84 (diff) | |
| download | rockbox-fb6b15980a268e95523e63c37fe105a9640191b5.zip rockbox-fb6b15980a268e95523e63c37fe105a9640191b5.tar.gz rockbox-fb6b15980a268e95523e63c37fe105a9640191b5.tar.bz2 rockbox-fb6b15980a268e95523e63c37fe105a9640191b5.tar.xz | |
Lua:
* remove debug statement from llex.c
* add DEBUGF to rocklua.c on parse error
* add file_exists wrapper
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21025 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rocklua.c')
| -rw-r--r-- | apps/plugins/lua/rocklua.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/lua/rocklua.c b/apps/plugins/lua/rocklua.c index 4bb89ae..e725914 100644 --- a/apps/plugins/lua/rocklua.c +++ b/apps/plugins/lua/rocklua.c @@ -93,6 +93,7 @@ enum plugin_status plugin_start(const void* parameter) dlmalloc_stats(); if (status) { + DEBUGF("%s\n", lua_tostring(L, -1)); rb->splashf(5 * HZ, "%s", lua_tostring(L, -1)); lua_pop(L, 1); } |