view move-if-change @ 98075:8d0e9f83831b

* xdisp.c (move_it_to): When moving by vpos, ensure that the iterator advances to the next line if the current line ends in a continued tab.
author Chong Yidong <cyd@stupidchicken.com>
date Sun, 07 Sep 2008 14:15:40 +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