Mercurial > emacs
view move-if-change @ 91081:2c767d9f0bb1
(font_prop_validate_symbol): The argument prop_index is
deleted.
(font_prop_validate_style, font_prop_validate_non_neg)
(font_prop_validate_spacing): Likewise.
(font_property_table): Arguments to validater changed. Callers
changed.
(font_lispy_object): Deleted.
(font_at): Use font_find_object instead fo font_lispy_object.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 05 Nov 2007 12:52:51 +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