changeset 22072:7680225527ef

maint: Strip trailing whitespace from source files.
author John W. Eaton <jwe@octave.org>
date Thu, 07 Jul 2016 16:27:21 -0400
parents 7ac3dd72fff9
children d18c63a45070
files scripts/plot/draw/isosurface.m scripts/plot/draw/private/__unite_shared_vertices__.m scripts/plot/util/newplot.m
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/draw/isosurface.m	Thu Jul 07 15:03:10 2016 -0700
+++ b/scripts/plot/draw/isosurface.m	Thu Jul 07 16:27:21 2016 -0400
@@ -58,9 +58,9 @@
 ## If given the string input argument @qcode{"noshare"}, vertices might be
 ## returned multiple times for different faces. The default behavior is to
 ## search vertices shared by adjacent faces with @command{unique} which might be
-## time consuming.  
+## time consuming.
 ## The string input argument @qcode{"verbose"} is only for compatibility and
-## has no effect.  
+## has no effect.
 ## The string input arguments must be passed after the other arguments.
 ##
 ## If called with two or three output arguments, return the information about
@@ -230,14 +230,14 @@
   switch (nin - num_string_inputs)
     case 1 ## isosurface (val, ...)
       data = varargin{1};
-    case 2 ## isosurface (val, iso, ...) or isosurface (val, col, ...) 
+    case 2 ## isosurface (val, iso, ...) or isosurface (val, col, ...)
       data = varargin{1};
       if (isscalar (varargin{2}) || isempty (varargin{2}))
         iso = varargin{2};
       else
         colors = varargin{2};
       endif
-    case 3 ## isosurface (val, iso, col, ...) 
+    case 3 ## isosurface (val, iso, col, ...)
       data = varargin{1};
       iso = varargin{2};
       colors = varargin{3};
--- a/scripts/plot/draw/private/__unite_shared_vertices__.m	Thu Jul 07 15:03:10 2016 -0700
+++ b/scripts/plot/draw/private/__unite_shared_vertices__.m	Thu Jul 07 16:27:21 2016 -0400
@@ -16,7 +16,7 @@
 ## along with Octave; see the file COPYING.  If not, see
 ## <http://www.gnu.org/licenses/>.
 
-## -*- texinfo -*- 
+## -*- texinfo -*-
 ## @deftypefn {} {[@var{faces}, @var{vertices}, @var{J}] =} __unite_shared_vertices__ (@var{faces}, @var{vertices})
 ##
 ## Detect and unite shared vertices in patches
--- a/scripts/plot/util/newplot.m	Thu Jul 07 15:03:10 2016 -0700
+++ b/scripts/plot/util/newplot.m	Thu Jul 07 16:27:21 2016 -0400
@@ -203,7 +203,7 @@
       ## the above code is is required.
   endswitch
 
-  ## Reset line and color styles when hold is not on 
+  ## Reset line and color styles when hold is not on
   if (! strcmp (anp, "add"))
     set (ca, "colororderindex", 1, "linestyleorderindex", 1);
   endif