Mercurial > hg > xemacs-beta
view move-if-change @ 926:4f61e79f8a14
[xemacs-hg @ 2002-07-16 08:27:09 by michaels]
2002-07-09 Mike Sperber <mike@xemacs.org>
* config.h.in: Add USE_KKCC variable to enable upcoming new GC
algorithms.
| author | michaels |
|---|---|
| date | Tue, 16 Jul 2002 08:27:11 +0000 |
| parents | 376386a54a3c |
| children |
line wrap: on
line source
#!/bin/sh if test -r $2 then if cmp $1 $2 > /dev/null then echo $2 is unchanged rm -f $1 else mv -f $1 $2 fi else mv -f $1 $2 fi
