[Asterisk-cvs] asterisk/doc README.ael,1.2,1.3

kpfleming at lists.digium.com kpfleming at lists.digium.com
Wed Jun 22 16:08:05 CDT 2005


Update of /usr/cvsroot/asterisk/doc
In directory mongoose.digium.com:/tmp/cvs-serv15271/doc

Modified Files:
	README.ael 
Log Message:
fix macro usage examples (bug #4579)


Index: README.ael
===================================================================
RCS file: /usr/cvsroot/asterisk/doc/README.ael,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- README.ael	22 Jun 2005 19:20:31 -0000	1.2
+++ README.ael	22 Jun 2005 20:08:43 -0000	1.3
@@ -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");
 };
 
 




More information about the svn-commits mailing list