changeset 18308:c1baf94184af

* oct-parse.in.yy: Suppress TAB characters.
author Michael Goffioul <michael.goffioul@gmail.com>
date Sat, 18 Jan 2014 22:43:07 -0500
parents a97ed15d1ea8
children 9d62b5f041ee
files libinterp/parse-tree/oct-parse.in.yy
diffstat 1 files changed, 9 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/parse-tree/oct-parse.in.yy	Sat Jan 18 18:38:29 2014 -0800
+++ b/libinterp/parse-tree/oct-parse.in.yy	Sat Jan 18 22:43:07 2014 -0500
@@ -1628,25 +1628,25 @@
                 ;
 
 method_decl1    : identifier
-		  {
+                  {
                     if (! ($$ = parser.start_classdef_external_method ($1, 0)))
                       ABORT_PARSE;
                   }
-		| identifier param_list
-		  { if (! ($$ = parser.start_classdef_external_method ($1, $2)))
+                | identifier param_list
+                  { if (! ($$ = parser.start_classdef_external_method ($1, $2)))
                       ABORT_PARSE;
                   }
                 ;
 
 method_decl     : stash_comment method_decl1
-		  { $$ = parser.finish_classdef_external_method ($2, 0, $1); }
+                  { $$ = parser.finish_classdef_external_method ($2, 0, $1); }
                 | stash_comment return_list '=' method_decl1
-		  { $$ = parser.finish_classdef_external_method ($4, $2, $1); }
+                  { $$ = parser.finish_classdef_external_method ($4, $2, $1); }
                 ;
 
 method          : method_decl
-		  { $$ = $1; }
-		| function
+                  { $$ = $1; }
+                | function
                   { $$ = $1; }
                 ;
 
@@ -3246,7 +3246,7 @@
 
 octave_user_function*
 octave_base_parser::start_classdef_external_method (tree_identifier *id,
-		                                    tree_parameter_list *pl)
+                                                    tree_parameter_list *pl)
 {
   octave_user_function* retval = 0;
 
@@ -3295,7 +3295,7 @@
 
 tree_function_def *
 octave_base_parser::finish_classdef_external_method (octave_user_function *fcn,
-		                                     tree_parameter_list *ret_list,
+                                                     tree_parameter_list *ret_list,
                                                      octave_comment_list *cl)
 {
   if (ret_list)