CMUCL commit: src/lisp (monitor.c)
Raymond Toy
rtoy at common-lisp.net
Tue Jan 26 19:54:18 CET 2010
Date: Tuesday, January 26, 2010 @ 13:54:18
Author: rtoy
Path: /project/cmucl/cvsroot/src/lisp
Modified: monitor.c
Exit with code 1 if ldb wants to quit due to EOF on something other
than a tty. This makes the build scripts stop if we get dumped to ldb
due to a fatal build error.
-----------+
monitor.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: src/lisp/monitor.c
diff -u src/lisp/monitor.c:1.21 src/lisp/monitor.c:1.22
--- src/lisp/monitor.c:1.21 Wed Mar 19 05:17:13 2008
+++ src/lisp/monitor.c Tue Jan 26 13:54:18 2010
@@ -1,4 +1,4 @@
-/* $Header: /project/cmucl/cvsroot/src/lisp/monitor.c,v 1.21 2008-03-19 09:17:13 cshapiro Rel $ */
+/* $Header: /project/cmucl/cvsroot/src/lisp/monitor.c,v 1.22 2010-01-26 18:54:18 rtoy Exp $ */
#include <stdio.h>
#include <sys/types.h>
@@ -470,7 +470,7 @@
continue;
} else {
fprintf(stderr, "\nEOF on something other than a tty.\n");
- exit(0);
+ exit(1);
}
}
ptr = line;
More information about the cmucl-commit
mailing list