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
This commit is contained in:
Steve Murphy 2007-10-24 04:44:27 +00:00
parent 4e20c42a13
commit d914cbee48
2 changed files with 423 additions and 404 deletions

File diff suppressed because it is too large Load Diff

View File

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