view move-if-change @ 97820:45062be75131

* composite.h (enum composition_method): Delete COMPOSITION_WITH_GLYPH_STRING. (COMPOSITION_METHOD): Dont' check COMPOSITION_WITH_GLYPH_STRING. (Vcomposition_function_table): Extern it. (LGSTRING_XXX, LGLYPH_XXX): Macros moved from font.h. (composition_gstring_put_cache, composition_gstring_from_id) (composition_gstring_p, composition_gstring_width) (composition_compute_stop_pos, composition_reseat_it) (composition_update_it, composition_adjust_point): Extern them. (Fcomposition_get_gstring): EXFUN it.
author Kenichi Handa <handa@m17n.org>
date Fri, 29 Aug 2008 07:53:47 +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