diff src/pt-id.cc @ 10315:57a59eae83cc

untabify src C++ source files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:41:46 -0500
parents cd96d29c5efa
children 34e51d4e199b
line wrap: on
line diff
--- a/src/pt-id.cc	Thu Feb 11 12:23:32 2010 -0500
+++ b/src/pt-id.cc	Thu Feb 11 12:41:46 2010 -0500
@@ -49,7 +49,7 @@
     ::error ("`%s' undefined", name ().c_str ());
   else
     ::error ("`%s' undefined near line %d column %d",
-	     name ().c_str (), l, c);
+             name ().c_str (), l, c);
 }
 
 octave_value_list
@@ -76,18 +76,18 @@
       // a value.
 
       if (val.is_function () && ! is_postfix_indexed ())
-	{
-	  octave_value_list tmp_args;
+        {
+          octave_value_list tmp_args;
 
-	  retval = val.do_multi_index_op (nargout, tmp_args);
-	}
+          retval = val.do_multi_index_op (nargout, tmp_args);
+        }
       else
-	{
-	  if (print_result () && nargout == 0)
-	    val.print_with_name (octave_stdout, name ());
+        {
+          if (print_result () && nargout == 0)
+            val.print_with_name (octave_stdout, name ());
 
-	  retval = val;
-	}
+          retval = val;
+        }
     }
   else
     eval_undefined_error ();
@@ -116,7 +116,7 @@
 
 tree_identifier *
 tree_identifier::dup (symbol_table::scope_id sc,
-		      symbol_table::context_id) const
+                      symbol_table::context_id) const
 {
   // The new tree_identifier object contains a symbol_record
   // entry from the duplicated scope.