# HG changeset patch # User prnienhuis # Date 1389298250 0 # Node ID 9fd3cfe65ce9930992bd19383b168f1ce1b4cbb1 # Parent 5dd749dcc83f6f86e58e32a6359c1ff1bc3916c7 Add try catch around call to chk_spreadsheet_support just to be sure diff -r 5dd749dcc83f -r 9fd3cfe65ce9 main/io/PKG_DEL --- a/main/io/PKG_DEL Thu Jan 09 12:09:07 2014 +0000 +++ b/main/io/PKG_DEL Thu Jan 09 20:10:50 2014 +0000 @@ -1,6 +1,10 @@ ## PKG_DEL ## -## All we need to do is to remove all Java spreadsheet class libs loaded -## by chk_spreadsheet_support from the javaclasspath +## All we need to do is try to remove all Java spreadsheet class libs loaded +## by chk_spreadsheet_support.m from the javaclasspath -chk_spreadsheet_support ("", -1); +try + chk_spreadsheet_support ("", -1); +catch + warning ("Couldn't remove spreadsheet I/O javaclasspath entries while unloading io pkg"); +end_try_catch