raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=8d6d395358e12c0ff097fd784c78ca4bc9c36c9f
commit 8d6d395358e12c0ff097fd784c78ca4bc9c36c9f Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Wed Aug 10 11:12:17 2016 +0900 fix double delcaration of variable in elm_code this fixes T4318 - thanks romain. --- src/lib/elementary/elm_code_parse.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/elementary/elm_code_parse.c b/src/lib/elementary/elm_code_parse.c index d7b85b6..04b45ce 100644 --- a/src/lib/elementary/elm_code_parse.c +++ b/src/lib/elementary/elm_code_parse.c @@ -104,9 +104,6 @@ elm_code_parser_standard_add(Elm_Code *code, Elm_Code_Parser *parser) code->parsers = eina_list_append(code->parsers, parser); } -EAPI Elm_Code_Parser * -ELM_CODE_PARSER_STANDARD_DIFF; - static void _elm_code_parser_diff_trim_leading(Elm_Code_Line *line, unsigned int count) { --
