hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=f18efb732a3ae97033b73b9aa11e5ca41cb24e62
commit f18efb732a3ae97033b73b9aa11e5ca41cb24e62 Author: Hermet Park <[email protected]> Date: Thu Jul 21 21:03:59 2016 +0900 edc_parser: fix typos. --- src/lib/edc_parser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/edc_parser.c b/src/lib/edc_parser.c index 63fba09..e82b5f1 100644 --- a/src/lib/edc_parser.c +++ b/src/lib/edc_parser.c @@ -2053,7 +2053,7 @@ parser_first_group_name_get(parser_data *pd, Evas_Object *entry) char *slash = strstr(p, "\\"); if (!slash) break; - char *eol = strstr(p, "\""); + char *eol = strstr(p, "\n"); if (!eol) goto end; if (eol < slash) break; @@ -2385,7 +2385,7 @@ parser_group_list_get(parser_data *pd, Evas_Object *entry) char *slash = strstr(p, "\\"); if (!slash) break; - char *eol = strstr(p, "\""); + char *eol = strstr(p, "\n"); if (!eol) goto end; if (eol < slash) break; --
