On Wed, Jul 03, 2002 at 08:41:48PM +0800, Fabrice MARIE wrote:

> On Wednesday 03 July 2002 19:24, Jozsef Kadlecsik wrote:

 Hi,

> I believe it's very natural to want to perform several things if a condition
> match, just like you would do in C a
> if (condition1) {
>    action1();
>    action2();
>    action3();
> }
> instead of a
> if (condition1)
>    action1();
> if (condition1)
>    action2();
> if (condition1)
>    action3();

That's what user-defined chains are for.  I agree it is not very
elegant to create a chain for every action group, but there are
generally no plenty of these.

 RV

-- 
 _
(°=  Hervé Eychenne
//)
v_/_ WallFire project:  http://www.wallfire.org/

Reply via email to