Mercurial > emacs
view move-if-change @ 48535:e2e2249bea09
Use malloc_default_zone to determine the size of pointers alloced in unexec
space instead of using possibly invalid emacs_zone pointers. This fixes
the binary incompatibility problems caused by updates to libSystem.B
author | Steven Tamm <steventamm@mac.com> |
---|---|
date | Sun, 24 Nov 2002 22:56:59 +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