view move-if-change @ 83539:4a2f192917db

Fix various aborts in get_named_tty. (Patch by Kalle Olavi Niemitalo) * src/keyboard.c (interrupt_signal, handle_interrupt, Fset_quit_char): Fix get_named_tty calls for the controlling tty. (Patch by Kalle Olavi Niemitalo <kon@iki.fi>) git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-579
author Karoly Lorentey <lorentey@elte.hu>
date Sat, 29 Jul 2006 22:04:29 +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