view move-if-change @ 96562:ea11c7e02573

(struct xftfont_info): New member ft_size. Make the member order compatible with struct ftfont_info. (xftfont_open): Add FC_CHARSET to the pattern. Set xftfont_info->ft_size. Don't unlock the face. Check BDF properties if appropriate. (xftfont_close): Unlock the face. (xftfont_anchor_point, xftfont_shape): Deleted. (syms_of_xftfont): Don't set members anchor_point and shape of xftfont_driver.
author Kenichi Handa <handa@m17n.org>
date Wed, 09 Jul 2008 00:32:01 +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