[Nice-commit] Nice/src/nice/tools/compiler load.nice,1.2,1.3
Brought to you by:
bonniot
|
From: Daniel B. <bo...@us...> - 2005-04-03 09:40:44
|
Update of /cvsroot/nice/Nice/src/nice/tools/compiler In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29320/src/nice/tools/compiler Modified Files: load.nice Log Message: Do not report a compiler bug in load mode (nicedoc, ...) when the compilation normally fails. Index: load.nice =================================================================== RCS file: /cvsroot/nice/Nice/src/nice/tools/compiler/load.nice,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** load.nice 14 Jan 2005 18:53:51 -0000 1.2 --- load.nice 3 Apr 2005 09:40:29 -0000 1.3 *************** *** 34,37 **** --- 34,40 ---- return cast(flatten(load(compilation))); } + catch(bossa.modules.Exit e){ + // Compilation stopped because of errors in the source + } catch(bossa.util.UserError e){ bossa.util.Internal.warning("user error only caught in main"); |