view move-if-change @ 109685:5cfe70ae40e5

Fix overlay arrow display, make doc strings bidi-friendly. xdisp.c (display_line): Move the handling of overlay arrow after the call to find_row_edges. (Bug#6699) cmds.c (Fforward_line, Fbeginning_of_line, Fend_of_line): editfns.c (Fline_beginning_position, Fline_end_position): State in the doc strings that start and end of line are in the logical order.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 08 Aug 2010 19:51:56 +0300
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