diff src/OPERATORS/op-fm-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-fm-fcs.cc	Mon Dec 07 13:17:13 2009 -0500
+++ b/src/OPERATORS/op-fm-fcs.cc	Mon Dec 07 14:49:48 2009 -0500
@@ -1,7 +1,7 @@
 /*
 
 Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-              2007, 2008 John W. Eaton
+              2007, 2008, 2009 John W. Eaton
 
 This file is part of Octave.
 
@@ -79,20 +79,20 @@
 }
 
 DEFNDCMPLXCMPOP_FN (lt, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_lt)
+               float_complex, mx_el_lt)
 DEFNDCMPLXCMPOP_FN (le, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_le)
+               float_complex, mx_el_le)
 DEFNDCMPLXCMPOP_FN (eq, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_eq)
+               float_complex, mx_el_eq)
 DEFNDCMPLXCMPOP_FN (ge, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_ge)
+               float_complex, mx_el_ge)
 DEFNDCMPLXCMPOP_FN (gt, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_gt)
+               float_complex, mx_el_gt)
 DEFNDCMPLXCMPOP_FN (ne, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_ne)
+               float_complex, mx_el_ne)
 
 DEFNDBINOP_OP (el_mul, float_matrix, float_complex, float_array, 
-	       float_complex, *)
+               float_complex, *)
 
 DEFBINOP (el_div, float_matrix, float_complex)
 {
@@ -107,7 +107,7 @@
 }
 
 DEFNDBINOP_FN (el_pow, float_matrix, float_complex, float_array, 
-	       float_complex, elem_xpow)
+               float_complex, elem_xpow)
 
 DEFBINOP (el_ldiv, float_matrix, flaot_complex)
 {
@@ -117,18 +117,18 @@
 }
 
 DEFNDBINOP_FN (el_and, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_and)
+               float_complex, mx_el_and)
 DEFNDBINOP_FN (el_or, float_matrix, float_complex, float_array, 
-	       float_complex, mx_el_or)
+               float_complex, mx_el_or)
 
 DEFNDCATOP_FN (fm_fcs, float_matrix, float_complex, float_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 DEFNDCATOP_FN (m_fcs, matrix, float_complex, float_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 DEFNDCATOP_FN (fm_cs, float_matrix, complex, float_array, 
-	       float_complex_array, concat)
+               float_complex_array, concat)
 
 void
 install_fm_fcs_ops (void)
@@ -157,9 +157,9 @@
   INSTALL_CATOP (octave_float_matrix, octave_complex, fm_cs);
 
   INSTALL_ASSIGNCONV (octave_float_matrix, octave_float_complex, 
-		      octave_float_complex_matrix);
+                      octave_float_complex_matrix);
   INSTALL_ASSIGNCONV (octave_matrix, octave_float_complex, 
-		      octave_complex_matrix);
+                      octave_complex_matrix);
 }
 
 /*