Mercurial > emacs
view move-if-change @ 89614:355fc0282e50
(set_fontset_font): New function.
(Fset_fontset_font): If a font is specified for a charset, use
map_charset_chars to store the font spec in a fontset.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Sat, 08 Nov 2003 00:54:53 +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