view move-if-change @ 34743:c105f9abf6b5

(try_cursor_movement): Fix last change. The real condition is that PT is at the end of the row, and should be displayed at the start of the next row.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 20 Dec 2000 14:24: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