Mercurial > emacs
view move-if-change @ 79535:a84f960614b0
* lisp/saveplace.el (save-place-alist-to-file): Save with 'emacs-mule'
coding system. This ports revisions 1.40 and 1.41 over to the
EMACS_22_BASE branch, but with the right coding system for Emacs 22
to reliably record filenames. Suggested by Eli Zaretskii.
author | Karl Fogel <kfogel@red-bean.com> |
---|---|
date | Tue, 04 Dec 2007 06:11:29 +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