Mercurial > hg > xemacs-beta
view move-if-change @ 3736:01830ac74073
[xemacs-hg @ 2006-12-11 12:22:47 by aidan]
2006-12-08 Aidan Kehoe <kehoea@parhasard.net>
* specifier.c (charset_matches_specifier_tag_set_p):
A charset's entry in Vcharset_tag_lists may be nil, if, when that
charset was created, no tags with associated charset predicates
existed. Accept this possibility, treat it as the tag not matching
that charset.
author | aidan |
---|---|
date | Mon, 11 Dec 2006 12:22:52 +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