changeset 6651:fbd42a8df14f octave-forge

Remove an 'end' that didn't partse
author hauberg
date Sun, 07 Feb 2010 21:20:47 +0000
parents 770c6c36ae2f
children 387e2f080366
files main/vrml/inst/vrml_interp.m
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/main/vrml/inst/vrml_interp.m	Sun Feb 07 17:26:21 2010 +0000
+++ b/main/vrml/inst/vrml_interp.m	Sun Feb 07 21:20:47 2010 +0000
@@ -39,13 +39,14 @@
   error ("vrml_interp : typ should be a string in:\n%s",typ,e2);
 end
 
-if isempty (val), vs = "";
+if isempty (val)
+  vs = "";
 else 
   vs = sprintf ("%8.5f, ", val);
   vs = sprintf ("    keyValue [ %s ]\n", vs(1:length(vs)-2));
 end
-end
-if isempty (key), ks = "";
+if isempty (key)
+  ks = "";
 else              
   ks = sprintf ("%8.5f, ", key);
   ks = sprintf ("    key [ %s ]\n", ks(1:length(ks)-2));