view move-if-change @ 5513:cf2733b1ff4b

Be more reasonable in the implementation of #'make-modeline-command-wrapper. lisp/ChangeLog addition: 2011-05-27 Aidan Kehoe <kehoea@parhasard.net> * modeline.el (make-modeline-command-wrapper): Be more reasonable about the implementation of this wrapper, don't require that the value of COMMAND be available at macro-expansion time. (Basically, implement a closure.) * modeline.el (add-minor-mode): Remove a workaround and misguided comment that are no longer necessary or exact.
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 27 May 2011 14:31:56 +0100
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