On Wed, 23 Mar 2011, Daniel Juyung Seo wrote:

> Hello,
> This looks intended.
>
> _edje_emit(ed, aliased, src);
> return;
>
> ==>
>
> return _edje_emit(edj, aliased, src);

if the function is declared with return type 'void', then the statement 
after 'return' can be ignored (can't remember if it's compiler dependant 
or the C spec). The correct use is

_edje_emit(ed, aliased, src);
return;

if one wants to interrupt the function execution after _edje_emit(ed, aliased, 
src);

Vincent

------------------------------------------------------------------------------
Enable your software for Intel(R) Active Management Technology to meet the
growing manageability and security demands of your customers. Businesses
are taking advantage of Intel(R) vPro (TM) technology - will your software 
be a part of the solution? Download the Intel(R) Manageability Checker 
today! http://p.sf.net/sfu/intel-dev2devmar
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to