Mercurial > hg > xemacs-beta
view move-if-change @ 4343:fb73a2046d3e
Fix unused parameter warnings when compiling with ALSA sound support.
2007-12-20 Jerry James <james@xemacs.org>
* sound.c: Fix unused parameter warnings when HAVE_ALSA_SOUND.
author | Jerry James <james@xemacs.org> |
---|---|
date | Thu, 20 Dec 2007 09:51:51 -0700 |
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