From: utzoo!decvax!duke!unc!tim
Newsgroups: net.bugs.4bsd
Title: csh job control bug
Article-I.D.: unc.4653
Posted: Sun Feb 13 17:38:06 1983
Received: Wed Feb 16 00:59:13 1983

If you have sequence of statements separated by semicolons
running in the foreground, suspending and then resuming will
lose all statements after the one currently running. E.g.:

% lex lexan; cc lex.yy.c -ll; echo ^G
^Z
Stopped
% fg
lex lexan
% ls
lexan	lex.yy.c
%

Note that there is no a.out. Neither the cc nor the echo ran.