view move-if-change @ 44243:c3ee131a3ab1

(xml-lite-get-context): Don't stop parsing at unclosed tags unless it is at indentation. Kill nested unclosed tags. (xml-lite-calculate-indent, xml-lite-indent-line): Remove. (xml-lite-mode): Use sgml-indent-line instead.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 29 Mar 2002 22:16:38 +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