aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/ael/ael.y
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-24 04:14:28 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-24 04:14:28 +0000
commita7eea7f188a908d83fb9d4f9ea42c436ba71db9b (patch)
tree117a79352d16df9d2a1b0d0123914f68a35590e7 /pbx/ael/ael.y
parent80107e956bfb077c41f4a73183de5f8713f92fdf (diff)
closes issue #11037 -- unable to specify app:spec in hint arguments
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@86936 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/ael/ael.y')
-rw-r--r--pbx/ael/ael.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/pbx/ael/ael.y b/pbx/ael/ael.y
index 657e97067..d54dc01ab 100644
--- a/pbx/ael/ael.y
+++ b/pbx/ael/ael.y
@@ -352,6 +352,10 @@ hint_word : word { $$ = $1; }
asprintf(&($$), "%s %s", $1, $2);
free($1);
free($2); }
+ | hint_word COLON word {
+ asprintf(&($$), "%s:%s", $1, $3);
+ free($1);
+ free($3); }
| hint_word AMPER word { /* there are often '&' in hints */
asprintf(&($$), "%s&%s", $1, $3);
free($1);