view move-if-change @ 41502:828432e1e1d4

Modify a commented-out non-nil value of jit-lock-defer-time, to make it consistent with the lazy-lock-defer-time's default value.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 25 Nov 2001 18:02:45 +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