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: https://origsvn.digium.com/svn/asterisk/trunk@86954 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Steve Murphy 18 years ago
parent 4e20c42a13
commit d914cbee48

File diff suppressed because it is too large Load Diff

@ -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);

Loading…
Cancel
Save