Mercurial > emacs
view move-if-change @ 90248:c8c3c8dbe333
(mac_encode_char): Call ccl_driver with the last arg Qnil.
Use JIS_TO_SJIS instead of ENCODE_SJIS.
(decode_mac_font_name): Use decode_coding_c_string instead of decode_coding.
(x_load_font): Initialize fontp->fontset to -1. Set fontp->encoding_type.
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
---|---|
date | Tue, 18 Oct 2005 10:32:37 +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