FIX THIS!!!!!!!!!!!!!
git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/edje@50704
7cbeb6ba-43b4-40fd-8cce-
4c39aea84d33
((*delim) && (!isdelim(*p))) ||
(isdelim(*p))
)
- {
+ {/*the line below this is never used because it skips to
+ * the 'done' label which is after the return call for
+ * in_tok being 0. is this intentional?
+ */
in_tok = 0;
+
tok_end = p - 1;
if (*p == '\n') line--;
goto done;
{
char *str;
char *end;
- long val;
str = eina_list_nth(params, n);
if (!str)
}
if (str[0] == 0) return 0;
end = str;
- val = strtol(str, &end, 0);
+ strtol(str, &end, 0);
if ((end != str) && (end[0] == 0)) return 1;
return 0;
}