view move-if-change @ 100757:02ad31ca52a9

(pmail-edit-mode): Bind buffer-swwapped-with to nil. (pmail-edit-current-message): Save all of buffer as old text. Clear undo list. (pmail-cease-edit): Widen first. Operate in the view buffer; copy edited text back to mbox buffer and re-encode what was decoded to display the message. (pmail-abort-edit): Widen first.
author Richard M. Stallman <rms@gnu.org>
date Mon, 29 Dec 2008 19:19:15 +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