Mercurial > hg > xemacs-beta
view move-if-change @ 495:02f7a782086f
[xemacs-hg @ 2001-05-01 09:36:44 by ben]
* config.inc.samp (MAKEINFO): point at more standard c: not f:.
Fix more compiler warnings, clean up the style to conform
more to standard XEmacs.
author | ben |
---|---|
date | Tue, 01 May 2001 09:36:44 +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