Mercurial > emacs
view move-if-change @ 96224:0fdf03fe1e8d
(font_score): Even if the PIXEL_SIZE is the same, check
DPI too.
(font_sort_entites): Setup prefer_prop[FONT_DPI_INDEX] too.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Tue, 24 Jun 2008 07:01:27 +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