diff options
author | angela <angela@lindenlab.com> | 2009-11-18 20:52:53 +0800 |
---|---|---|
committer | angela <angela@lindenlab.com> | 2009-11-18 20:52:53 +0800 |
commit | a35fbddb910fa0dd068622c3dc64af1b27ca19b7 (patch) | |
tree | 691c23b2ec764eea9cd1677c1b701979ccf27241 /indra/lscript | |
parent | acc53aa2f7a3fd939a207674a3bdf96d6e649f90 (diff) |
EXT-2094
Diffstat (limited to 'indra/lscript')
-rw-r--r-- | indra/lscript/lscript_compile/indra.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/lscript/lscript_compile/indra.l b/indra/lscript/lscript_compile/indra.l index 8c891b3e8f..e650c71bea 100644 --- a/indra/lscript/lscript_compile/indra.l +++ b/indra/lscript/lscript_compile/indra.l @@ -611,6 +611,7 @@ extern "C" { int yyerror(const char *fmt, ...); } "CLICK_ACTION_BUY" { count(); yylval.ival = CLICK_ACTION_BUY; return(INTEGER_CONSTANT); } "CLICK_ACTION_PAY" { count(); yylval.ival = CLICK_ACTION_PAY; return(INTEGER_CONSTANT); } "CLICK_ACTION_OPEN" { count(); yylval.ival = CLICK_ACTION_OPEN; return(INTEGER_CONSTANT); } +"CLICK_ACTION_ZOOM" { count(); yylval.ival = CLICK_ACTION_ZOOM; return(INTEGER_CONSTANT); } "CLICK_ACTION_PLAY" { count(); yylval.ival = CLICK_ACTION_PLAY; return(INTEGER_CONSTANT); } "CLICK_ACTION_OPEN_MEDIA" { count(); yylval.ival = CLICK_ACTION_OPEN_MEDIA; return(INTEGER_CONSTANT); } |