diff libinterp/parse-tree/oct-parse.in.yy @ 16259:0b5ab09dfce4

2/10 commits reworking the lexer
author John W. Eaton <jwe@octave.org>
date Mon, 11 Mar 2013 14:18:39 -0400
parents db7f07b22b9b
children 6c211b8cfbd9 9acb86e6ac90
line wrap: on
line diff
--- a/libinterp/parse-tree/oct-parse.in.yy	Mon Mar 11 14:14:41 2013 -0400
+++ b/libinterp/parse-tree/oct-parse.in.yy	Mon Mar 11 14:18:39 2013 -0400
@@ -502,10 +502,7 @@
                 ;
 
 anon_fcn_handle : '@' param_list statement
-                  {
-                    curr_lexer->quote_is_transpose = false;
-                    $$ = curr_parser.make_anon_fcn_handle ($2, $3);
-                  }
+                  { $$ = curr_parser.make_anon_fcn_handle ($2, $3); }
                 ;
 
 primary_expr    : identifier
@@ -1033,10 +1030,7 @@
                 ;
 
 param_list      : param_list_beg param_list1 param_list_end
-                  {
-                    curr_lexer->quote_is_transpose = false;
-                    $$ = $2;
-                  }
+                  { $$ = $2; }
                 | param_list_beg error
                   {
                     curr_parser.bison_error ("invalid parameter list");