Mercurial > emacs
view move-if-change @ 70953:971aad463b69
(org-next-item, org-previous-item): Emit more compact
error message.
(org-tags-view): Refresh category table in each file.
(org-table-justify-field-maybe): Removed superfluous arguments
to
`format'.
(org-export-as-html): Insert "<p>" before postamble.
(org-paste-subtree, org-kill-is-subtree-p): Check for empty
kill
ring.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Fri, 26 May 2006 05:37:59 +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