Mercurial > hg > xemacs-beta
view move-if-change @ 818:accc481aef34
[xemacs-hg @ 2002-04-25 06:09:11 by youngs]
2002-04-25 Steve Youngs <youngs@xemacs.org>
* mule/mule-charset.el (string-to-char-list): New. This used to
be in 'mule-misc.el' but that file has been removed.
2002-04-14 Steve Youngs <youngs@xemacs.org>
* obsolete.el (find-non-ascii-charset-region): A couple of
packages use this.
(find-non-ascii-charset-string): Ditto.
| author | youngs |
|---|---|
| date | Thu, 25 Apr 2002 06:09:18 +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
