diff -r 998cb95fdd43 -r bd33e7aae062 lib/scripts/run-smlnj --- a/lib/scripts/run-smlnj Fri Apr 11 15:21:36 1997 +0200 +++ b/lib/scripts/run-smlnj Fri Apr 11 17:30:15 1997 +0200 @@ -39,11 +39,11 @@ if [ -z "$OUTFILE" ]; then COMMIT='fun commit () = (output (std_err, "Error - Database is not opened for writing.\n"); false);' elif [ -n "$INFILE" -a ! "$INFILE" -ef "$OUTFILE" ]; then - [ -f "$OUTFILE" ] && { rm -f "$OUTFILE" || fail_out } + [ -f "$OUTFILE" ] && { rm -f "$OUTFILE" || fail_out; } cp "$INFILE" "$OUTFILE" || fail_out fi -[ -n "$OUTFILE" -a -f "$OUTFILE" ] && { chmod +w "$OUTFILE" || fail_out } +[ -n "$OUTFILE" -a -f "$OUTFILE" ] && { chmod +w "$OUTFILE" || fail_out; } MLTEXT="$EXIT $COMMIT $MLTEXT" MLEXIT="commit();"