diff examples/paramdemo.cc @ 9932:6cb30a539481

untabify files in examples directory
author John W. Eaton <jwe@octave.org>
date Mon, 07 Dec 2009 14:53:20 -0500
parents 4295d634797d
children db1f49eaba6b
line wrap: on
line diff
--- a/examples/paramdemo.cc
+++ b/examples/paramdemo.cc
@@ -1,7 +1,7 @@
 #include <octave/oct.h>
 
 DEFUN_DLD (paramdemo, args, nargout, 
-	   "Parameter Check Demo.")
+           "Parameter Check Demo.")
 {
   int nargin = args.length ();
   octave_value retval;
@@ -22,13 +22,13 @@
         octave_stdout << "  includes Inf or NaN values\n";
       if (m.any_element_not_one_or_zero())
         octave_stdout << 
-	  "  includes other values than 1 and 0\n";
+          "  includes other values than 1 and 0\n";
       if (m.all_elements_are_int_or_inf_or_nan())
         octave_stdout << 
-	  "  includes only int, Inf or NaN values\n";
+          "  includes only int, Inf or NaN values\n";
       if (m.all_integers (min_val, max_val))
         octave_stdout << 
-	  "  includes only integers in [-10,10]\n";
+          "  includes only integers in [-10,10]\n";
     }
   return retval;
 }