Mercurial > emacs
view move-if-change @ 91093:3de299ab846c
(READCHAR): Call readchar with the 2nd arg NULL.
(READCHAR_REPORT_MULTIBYTE): New macro.
(readchar): New 2nd arg MULTIBYTE.
(read1): Use READCHAR_REPORT_MULTIBYTE for the first read. Make
symbol's name multibyte according to the multibyteness of the
source.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 14 Nov 2007 04:52:07 +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