Mercurial > hg > xemacs-beta
view move-if-change @ 909:a703d313962d
[xemacs-hg @ 2002-07-09 11:55:35 by michaels]
2002-07-08 Mike Sperber <mike@xemacs.org>
* ralloc.c (init_ralloc): Allocate properly for pdump.
* emacs.c (main_1): Revert init_ralloc patch in favor of an
easier-to-understand solution.
author | michaels |
---|---|
date | Tue, 09 Jul 2002 11:55:36 +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