]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Added a few words of explanation about macros
authorSteve Murphy <murf@digium.com>
Sun, 19 Nov 2006 04:12:39 +0000 (04:12 +0000)
committerSteve Murphy <murf@digium.com>
Sun, 19 Nov 2006 04:12:39 +0000 (04:12 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@47835 65c4cc65-6c06-0410-ace0-fbb531ad65f3

doc/ael.txt

index 01151f9a9c579fcca6e4d41f55c197b9020f51e8..0f6d6a65ab3f2c7226f837f426ad8d7ec6013e52 100644 (file)
@@ -102,7 +102,9 @@ extension, and a subroutine. It has arguments like a subroutine
 might. A macro call can be made within an extension, and the
 individual statements there are executed until it ends. At this point,
 execution returns to the next statement after the macro call. Macros
-can call other macros. And they work just like function calls.
+can call other macros. And they work just like function calls. In 1.2,
+and 1.4, they are implemented underneath with the Macro() application.
+In 1.6 and up, they are implemented with the Gosub() application.
 
 Applications
 ------------
@@ -981,7 +983,7 @@ Macros
 
 A macro is defined in its own block like this. The arguments to the
 macro are specified with the name of the macro. They are then referred
-to by that same name. A catch block can be specified to catch special
+to by that same name. A catch block can be specified to 'catch' special
 extensions.