aboutsummaryrefslogtreecommitdiffstats
path: root/pbx/ael/ael.flex
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-27 17:16:41 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2006-04-27 17:16:41 +0000
commitf61c9a3779391d17a96cac5137ce49996ea43958 (patch)
tree2ab4bc748c49ca184823cf81f8cef69a7dde74e7 /pbx/ael/ael.flex
parent9558688d60ed864a70e606a09441ec4304311e19 (diff)
remove some commented-out code
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@22901 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx/ael/ael.flex')
-rw-r--r--pbx/ael/ael.flex12
1 files changed, 1 insertions, 11 deletions
diff --git a/pbx/ael/ael.flex b/pbx/ael/ael.flex
index e942ed9d4..77bfcb677 100644
--- a/pbx/ael/ael.flex
+++ b/pbx/ael/ael.flex
@@ -203,8 +203,6 @@ includes { STORE_POS; return KW_INCLUDES;}
<argg>{NOARGG}[\(\[\{] {
char c = yytext[yyleng-1];
- /* printf("ARGG:%s\n",yytext); */
- /* printf("GOT AN LP!!!\n"); */
STORE_START;
if (c == '(')
parencount++;
@@ -213,7 +211,6 @@ includes { STORE_POS; return KW_INCLUDES;}
}
<argg>{NOARGG}\) {
- /* printf("ARGG:%s\n",yytext); */
STORE_START;
if ( pbcpop(')') ) { /* error */
STORE_END;
@@ -231,7 +228,6 @@ includes { STORE_POS; return KW_INCLUDES;}
yylval->str = strdup(yytext);
if(yyleng > 1 )
*(yylval->str+yyleng-1)=0;
- /* printf("Got argg word '%s'\n", yylval->str); */
BEGIN(0);
if ( !strcmp(yylval->str,")") ) {
free(yylval->str);
@@ -246,12 +242,10 @@ includes { STORE_POS; return KW_INCLUDES;}
}
<argg>{NOARGG}\, {
- /* printf("ARGG:%s\n",yytext); */
if( parencount != 0) {
/* printf("Folding in a comma!\n"); */
yymore();
} else {
- /* printf("got a comma!\n\n"); */
STORE_START;
STORE_END;
if( !commaout ) {
@@ -277,7 +271,6 @@ includes { STORE_POS; return KW_INCLUDES;}
<argg>{NOARGG}[\]\}] {
char c = yytext[yyleng-1];
- /*printf("ARGG:%s\n",yytext);*/
STORE_START;
if ( pbcpop(c) ) { /* error */
STORE_END;
@@ -293,15 +286,13 @@ includes { STORE_POS; return KW_INCLUDES;}
<semic>{NOSEMIC}[\(\[\{] {
char c = yytext[yyleng-1];
- /*printf("SEMIC:%s\n",yytext);*/
STORE_START;
yymore();
pbcpush(c);
- }
+ }
<semic>{NOSEMIC}[\)\]\}] {
char c = yytext[yyleng-1];
- /*printf("SEMIC:%s\n",yytext);*/
STORE_START;
if ( pbcpop(c) ) { /* error */
STORE_END;
@@ -319,7 +310,6 @@ includes { STORE_POS; return KW_INCLUDES;}
yylval->str = strdup(yytext);
if(yyleng > 1)
*(yylval->str+yyleng-1)=0;
- /* printf("Got semic word %s\n", yylval->str); */
unput(';');
BEGIN(0);
return word;