Mercurial > emacs
view move-if-change @ 109818:0710ff9a8063
Fix bug #6796.
w32fns.c <w32_frame_parm_handlers>: Add a slot for the
x_set_tool_bar_position handler, needed to support changes from
2010-07-29 (revno 100939) for positioning the tool bar.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Tue, 17 Aug 2010 23:05:50 +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