edje_cc no longer reads every character of a script during parsing

This commit is contained in:
Mike Blumenkrantz 2014-03-21 20:45:00 -04:00
parent 0681af5ca1
commit 499020ce4d
1 changed files with 1 additions and 1 deletions

View File

@ -10027,7 +10027,7 @@ ob_collections_group_programs_program_script(void)
cd->is_lua = 0;
len = strlen(cp->script);
for (i = 0; i < len; i++)
for (i = 0; empty && i < len; i++)
{
if (((cp->script[i] > 'a') && (cp->script[i] < 'z')) ||
((cp->script[i] > 'A') && (cp->script[i] < 'Z')) ||