view move-if-change @ 52557:4a93216e6678

(Vdefault_frame_scroll_bars): New variable. (x_set_vertical_scroll_bars): Use it instead of hardcoded values. (syms_of_frame): DEFVAR_LISP it, and initialize according to window-system default scroll bar position.
author Kim F. Storm <storm@cua.dk>
date Sat, 20 Sep 2003 23:26:20 +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