Mercurial > hg > xemacs-beta
view move-if-change @ 4409:3ff01259c4a2
Support LZMA compression in info.el.
2008-01-21 Aidan Kehoe <kehoea@parhasard.net>
* info.el (Info-suffix-list):
Support LZMA compression, as used--oddly--by Mandriva Linux.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Mon, 21 Jan 2008 16:26:36 +0100 |
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