Mercurial > emacs
view move-if-change @ 87938:bcbe422dacdd
(vc-next-action): Fix two instances of "free-var file" bug:
In both cases, convert single call to one wrapped in dolist.
author | Thien-Thi Nguyen <ttn@gnuvola.org> |
---|---|
date | Thu, 24 Jan 2008 13:08:10 +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