|
From: <dsh...@us...> - 2007-04-03 20:02:41
|
Revision: 1206
http://svn.sourceforge.net/crawl-ref/?rev=1206&view=rev
Author: dshaligram
Date: 2007-04-03 13:02:40 -0700 (Tue, 03 Apr 2007)
Log Message:
-----------
Use end() instead of exit() for level compiler errors.
Modified Paths:
--------------
trunk/crawl-ref/source/util/levcomp.ypp
Modified: trunk/crawl-ref/source/util/levcomp.ypp
===================================================================
--- trunk/crawl-ref/source/util/levcomp.ypp 2007-04-03 18:39:12 UTC (rev 1205)
+++ trunk/crawl-ref/source/util/levcomp.ypp 2007-04-03 20:02:40 UTC (rev 1206)
@@ -31,7 +31,7 @@
{
fprintf(stderr, "%s:%d: %s\n", lc_desfile.c_str(), yylineno, e);
// Bail bail bail.
- exit(1);
+ end(1);
}
%}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|