view move-if-change @ 91336:04716f23ac87

(FONTSET_REF_AND_RANGE): Delete it. (fontset_ref_and_range): Delete it. (fontset_find_font): Call char_table_ref_and_range instead of FONTSET_REF_AND_RANGE. (make_fontset): Don't setup font groups of Latin here. (Fset_fontset_font): Don't overwrite the setting of FONTSET_ASCII. (new_fontset_from_font): Make the specified font the default for all Latin characters.
author Kenichi Handa <handa@m17n.org>
date Mon, 14 Jan 2008 01:31:25 +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