Am Sonntag, 2. September 2007 schrieb Michel Fortin:
> That is worth considering, especially since it would be so easy. A
> configuration define like this one:
>
>      define( 'MARKDOWN_EMPTY_ELEMENT_SUFFIX',  " />");
>
> could become this:
>
>      @define( 'MARKDOWN_EMPTY_ELEMENT_SUFFIX',  " />");

I once read that using "@" to suppress errors is quite slow. Why not use 
defined() ?

    if (!defined('...')) {
        define('...', '...');
    }

-- 
Milian Wolff
http://milianw.de
_______________________________________________
Markdown-Discuss mailing list
[email protected]
http://six.pairlist.net/mailman/listinfo/markdown-discuss

Reply via email to