[m-dev.] diff: clean up runtime.
Fergus Henderson
fjh at cs.mu.oz.au
Mon Nov 17 19:27:25 AEDT 1997
Tyson Richard DOWD, you wrote:
>
> Here's what I plan to commit soon. I haven't included the diffs
> for most of the files, because they're pretty meaningless.
The log message looks OK, but it would be nice to see diffs.
I know the ones that `cvs diff' produces won't be helpful,
but perhaps you could do something like:
mv runtime new-runtime
cvs checkout runtime
mv runtime old-runtime
for file in old-runtime/*; do
f=`basename $file`
case $f in
*.mod)
diff -u `basename $f .mod` \
new-runtime/mercury_$f.c
;;
*)
diff -u $f new-runtime/mercury_$f
;;
esac
done
--
Fergus Henderson <fjh at cs.mu.oz.au> | "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh> | of excellence is a lethal habit"
PGP: finger fjh at 128.250.37.3 | -- the last words of T. S. Garp.
More information about the developers
mailing list