q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=17b4622f1b319d8330a9f441d259e6b15e200aa7
commit 17b4622f1b319d8330a9f441d259e6b15e200aa7 Author: Daniel Kolesa <d.kol...@osg.samsung.com> Date: Thu Sep 24 14:12:07 2015 +0100 eolian: enable doc dependency parsing code --- src/lib/eolian/eo_lexer.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib/eolian/eo_lexer.c b/src/lib/eolian/eo_lexer.c index ced0890..bd78958 100644 --- a/src/lib/eolian/eo_lexer.c +++ b/src/lib/eolian/eo_lexer.c @@ -277,7 +277,6 @@ doc_ref_class(const char *cname) static void doc_ref(Eo_Lexer *ls) { -#if 0 const char *st = ls->stream, *ste = ls->stream_end; size_t rlen = 0; while ((st != ste) && ((*st == '.') || isalnum(*st))) @@ -314,9 +313,6 @@ doc_ref(Eo_Lexer *ls) return; *end = '\0'; doc_ref_class(buf); -#else - (void)ls; -#endif } static int --