diff src/OPERATORS/op-fcs-fcs.cc @ 9931:fb6b6fcafa62

untabify files in src/OPERATORS directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:49:48 -0500
parents 319e2ab9b8ae
children ac4b97c6bf8b
line wrap: on
line diff
--- a/src/OPERATORS/op-fcs-fcs.cc	Mon Dec 07 13:17:13 2009 -0500
+++ b/src/OPERATORS/op-fcs-fcs.cc	Mon Dec 07 14:49:48 2009 -0500
@@ -1,7 +1,7 @@
 /*
 
-Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2005, 2007, 2008
-              John W. Eaton
+Copyright (C) 1996, 1997, 1998, 2000, 2002, 2003, 2004, 2005, 2007,
+              2008, 2009 John W. Eaton
 
 This file is part of Octave.
 
@@ -134,7 +134,7 @@
   CAST_BINOP_ARGS (const octave_float_complex&, const octave_float_complex&);
 
   return (v1.float_complex_value () != static_cast<float>(0.0) && 
-	  v2.float_complex_value () != static_cast<float>(0.0));
+          v2.float_complex_value () != static_cast<float>(0.0));
 }
 
 DEFBINOP (el_or, float_complex, float_complex)
@@ -142,17 +142,17 @@
   CAST_BINOP_ARGS (const octave_float_complex&, const octave_float_complex&);
 
   return (v1.float_complex_value () != static_cast<float>(0.0) || 
-	  v2.float_complex_value () != static_cast<float>(0.0));
+          v2.float_complex_value () != static_cast<float>(0.0));
 }
 
 DEFNDCATOP_FN (fcs_fcs, float_complex, float_complex, float_complex_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 DEFNDCATOP_FN (cs_fcs, complex, float_complex, float_complex_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 DEFNDCATOP_FN (fcs_cs, float_complex, complex, float_complex_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 CONVDECL (float_complex_to_complex)
 {
@@ -205,7 +205,7 @@
   INSTALL_ASSIGNCONV (octave_float_complex, octave_null_sq_str, octave_float_complex_matrix);
 
   INSTALL_CONVOP (octave_float_complex, octave_complex_matrix, 
-		  float_complex_to_complex);
+                  float_complex_to_complex);
 }
 
 /*