Mercurial > emacs
view move-if-change @ 88127:9c783aa2b379
Attempt to eliminate some byte compiler warnings.
(rmail-add-label): Force the display of the labels.
(rmail-read-label): Remove call to rmail-parse-file-keywords which is
no longer used.
(rmail-set-label): Rewrite.
(rmail-keywords): Use (rmail-keyword-init).
(rmail-keyword-init, rmail-keyword-register-keywords): New function.
(rmail-install-keyword): Rewrite.
author | Paul Reilly <pmr@pajato.com> |
---|---|
date | Sat, 15 Feb 2003 15:12:08 +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