Mercurial > emacs
view move-if-change @ 101515:64ef70f990a9
2009-01-26 Carsten Dominik <dominik@science.uva.nl>
* org.el (org-yank): Tell `delete-selection-mode' about
`org-yank'.
* org-faces.el (org-clock-overlay): Fix face definition.
* org-export-latex.el (org-export-latex-first-lines): Pass
timestamp and footnote parameters to the preprocessor.
* org-exp.el (org-export-remove-timestamps): Do not remove time
stamps inside tables.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Mon, 26 Jan 2009 07:44:42 +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