view move-if-change @ 101155:9e5f8e946d21

* font.c (font_clear_prop): If clearing the family, clear the font width index too. * xfaces.c (Finternal_set_lisp_face_attribute): Revert last change.
author Chong Yidong <cyd@stupidchicken.com>
date Tue, 13 Jan 2009 20:02:34 +0000
parents 354e0c45cedf
children 14a97ab281d5
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