Mercurial > emacs
view move-if-change @ 111496:82e69613602e
ls-lisp: get rid of the dreaded "no effect until you restart Emacs".
* lisp/ls-lisp.el (ls-lisp-set-options): New function.
(ls-lisp-emulation): Use ls-lisp-set-options for custom :set. Doc fix.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Thu, 11 Nov 2010 00:28:35 -0800 |
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