aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-19 04:12:39 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2006-11-19 04:12:39 +0000
commit4dc2b93fefb257a3247eed0c08ffb8ea484331a8 (patch)
treeef898f62688db23f7200742ef74c50433783a74a /doc
parent35b5ab3bc133a04c5d851863302bbcafacaf6d1d (diff)
Added a few words of explanation about macros
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@47835 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'doc')
-rw-r--r--doc/ael.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/ael.txt b/doc/ael.txt
index 01151f9a9..0f6d6a65a 100644
--- a/doc/ael.txt
+++ b/doc/ael.txt
@@ -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.