view move-if-change @ 33524:cf8e03cd4985

(HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant. (w32_alloc_lighter_color): Use new brightness calculations from xterm.c. Scale delta to be in the range expected by W32. (w32_draw_relief_rect): Use frame relief colors.
author Jason Rumney <jasonr@gnu.org>
date Wed, 15 Nov 2000 23:47: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