Mercurial > hg > xemacs-beta
view move-if-change @ 936:0f9686ac3ce7
[xemacs-hg @ 2002-07-29 21:52:14 by scop]
2002-07-30 Ville Skyttä <ville.skytta@xemacs.org>
* term.texi (Input to the inferior): Fix term line/char mode
switch keybindings. Kudos to Jacob P. Burckhardt.
* xemacs/misc.texi (Term Mode): Ditto.
Message-Id: <1027534880.15332.209.camel@bobcat.ods.org>
author | scop |
---|---|
date | Mon, 29 Jul 2002 21:52:17 +0000 |
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