Index: README.ael =================================================================== RCS file: /usr/cvsroot/asterisk/doc/README.ael,v retrieving revision 1.2 diff -u -r1.2 README.ael --- README.ael 22 Jun 2005 19:20:31 -0000 1.2 +++ README.ael 22 Jun 2005 20:59:16 -0000 @@ -177,7 +177,7 @@ name. A catch block can be specified to catch special extensions. macro std-exten( ext , dev ) { - Dial(${ext}/${dev},20); + Dial(${dev}/${ext},20); switch(${DIALSTATUS) { case BUSY: Voicemail(b${ext}); @@ -194,7 +194,7 @@ A macro is then called by preceeding the macro name with an ampersand. context example { - _5XXX => &std-exten(${EXTEN}); + _5XXX => &std-exten(${EXTEN}, "IAX2"); };