Mercurial > hg > xemacs-beta
view move-if-change @ 2555:c69008aaa9bc
[xemacs-hg @ 2005-02-03 21:27:58 by james]
Dump easy-mmode, else the docstrings are lost and paragraphs.el cannot be
compiled successfully. See the xemacs-patches message with ID
<ps7jlpcp2g.fsf@diannao.ittc.ku.edu>.
author | james |
---|---|
date | Thu, 03 Feb 2005 21:27:59 +0000 |
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