view move-if-change @ 37721:4a800a01388b
(x_draw_glyphs): Fix compuation of rightmost x for
full-width rows.
author |
Gerd Moellmann <gerd@gnu.org> |
date |
Mon, 14 May 2001 13:03:23 +0000 (2001-05-14) |
parents |
354e0c45cedf |
children |
14a97ab281d5 |
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