view move-if-change @ 35017:53c3e3f3949b

(try_window_reusing_current_matrix): Fix bug setting the enabled_p flag of the glyph row at window_end_vpos to 0. (handle_single_display_prop): Fix last change.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 03 Jan 2001 12:32: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