Mercurial > hg > xemacs-beta
view move-if-change @ 4481:f9c70d94f427
Correct syntax of #'error calls, descr-text.el
2008-07-20 Aidan Kehoe <kehoea@parhasard.net>
* descr-text.el (describe-char-unicode-data):
Correct three calls to #'error; it doesn't take #'message style
format strings and arguments.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Sun, 20 Jul 2008 15:04:20 +0200 |
parents | 376386a54a3c |
children |
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