From: <prn...@us...> - 2011-09-23 19:27:40
|
Revision: 8584 http://octave.svn.sourceforge.net/octave/?rev=8584&view=rev Author: prnienhuis Date: 2011-09-23 19:27:33 +0000 (Fri, 23 Sep 2011) Log Message: ----------- Stray debug statements removed Modified Paths: -------------- trunk/octave-forge/main/io/inst/oct2ods.m trunk/octave-forge/main/io/inst/oct2xls.m Modified: trunk/octave-forge/main/io/inst/oct2ods.m =================================================================== --- trunk/octave-forge/main/io/inst/oct2ods.m 2011-09-23 17:55:55 UTC (rev 8583) +++ trunk/octave-forge/main/io/inst/oct2ods.m 2011-09-23 19:27:33 UTC (rev 8584) @@ -111,7 +111,7 @@ ## 2011-03-23 First try of odfdom 0.8.7 ## 2011-05-15 Experimental UNO support added ## -## Last update of subfunctions below: 2011-09-18 +## Last update of subfunctions below: 2011-09-23 function [ ods, rstatus ] = oct2ods (c_arr, ods, wsh=1, crange=[], spsh_opts=[]) @@ -1011,6 +1011,7 @@ ## 2011-summer <many many improvements> ## 2011-09-08 Stylistic changes ## 2011-09-18 Adapted sh_names type to LO 3.4.1 +## 2011-09-23 Removed stray debug statements function [ ods, rstatus ] = oct2uno2ods (c_arr, ods, wsh, crange, spsh_opts) @@ -1108,7 +1109,7 @@ fptr = cellfun (@(x) ischar (x) && strncmp (x, "=", 1), c_arr); typearr(fptr) = ctype(4); # FORMULA endif -keyboard + # Transfer data to sheet for ii=1:nrows for jj=1:ncols @@ -1135,7 +1136,6 @@ changed = 1; catch printf ("Error writing cell %s (typearr() = %d)\n", calccelladdress(trow+ii, lcol+jj), typearr(ii, jj)); - keyboard end_try_catch endfor endfor Modified: trunk/octave-forge/main/io/inst/oct2xls.m =================================================================== --- trunk/octave-forge/main/io/inst/oct2xls.m 2011-09-23 17:55:55 UTC (rev 8583) +++ trunk/octave-forge/main/io/inst/oct2xls.m 2011-09-23 19:27:33 UTC (rev 8584) @@ -107,7 +107,7 @@ ## 2011-05-18 Experimental UNO support ## 2011-09-08 Bug fix in range arg check; code cleanup -## Last script file update (incl. subfunctions): 2011-09-18 +## Last script file update (incl. subfunctions): 2011-09-23 function [ xls, rstatus ] = oct2xls (obj, xls, wsh=1, crange=[], spsh_opts=[]) @@ -899,6 +899,7 @@ ## Author: Philip Nienhuis <prn...@us...> ## Created: 2011-05-18 ## 2011-09-18 Adapted sh_names type to LO 3.4.1 +## 2011-09-23 Removed stray debug statements function [ xls, rstatus ] = oct2uno2xls (c_arr, xls, wsh, crange, spsh_opts) @@ -1020,11 +1021,10 @@ otherwise # Empty cell endswitch - changed = 1; + changed = 1; catch printf ("Error writing cell %s (typearr() = %d)\n", calccelladdress(trow+ii, lcol+jj), typearr(ii, jj)); - keyboard - end_try_catch + end_try_catch endfor endfor This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |