changeset 12489:b99d868f36cb octave-forge

Add FIXME (process open apps (Excel, LibreOffice, etc) before hard error)
author prnienhuis
date Wed, 21 May 2014 19:07:37 +0000
parents f58870850192
children ff2c56666cce
files main/io/inst/xlsopen.m
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/main/io/inst/xlsopen.m	Wed May 21 19:06:49 2014 +0000
+++ b/main/io/inst/xlsopen.m	Wed May 21 19:07:37 2014 +0000
@@ -285,6 +285,7 @@
   fid = fopen (filename, fmode);
   if (fid < 0)                      ## File doesn't exist...
     if (! xwrite)                   ## ...which obviously is fatal for reading...
+      ## FIXME process open apps (Excel, LibreOffice, etc) before hard crash
       error ( sprintf ("xlsopen.m: file %s not found\n", filename));
     else                            ## ...but for writing, we need more info:
       fid = fopen (filename, 'rb'); ## Check if it exists at all...