aboutsummaryrefslogtreecommitdiffstats
path: root/res/ael/ael.y
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-24 04:44:27 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-10-24 04:44:27 +0000
commiteaff46c5d7015bc3b28d1630f5555a97e7fe6f30 (patch)
tree6c1eba749735b78302bf19a179a309450cd2061c /res/ael/ael.y
parent08a1f8a741f6a236feea6025b463cd7880733df2 (diff)
Merged revisions 86936 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r86936 | murf | 2007-10-23 22:14:28 -0600 (Tue, 23 Oct 2007) | 1 line closes issue #11037 -- unable to specify app:spec in hint arguments ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@86954 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res/ael/ael.y')
-rw-r--r--res/ael/ael.y4
1 files changed, 4 insertions, 0 deletions
diff --git a/res/ael/ael.y b/res/ael/ael.y
index 42d86c008..dc5309005 100644
--- a/res/ael/ael.y
+++ b/res/ael/ael.y
@@ -360,6 +360,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);