Mercurial > hg > xemacs-beta
view move-if-change @ 5641:f4d74be74462
Fix symbol and string printing in gdb with pobj and NEW_GC. See xemacs-patches
message <CAHCOHQ=RdYDu_K6ONqXxDEO0sLFe2_egftpfFEU=C6cVaDcsjw@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Wed, 11 Jan 2012 16:38:50 -0700 |
parents | 376386a54a3c |
children |
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