Mercurial > hg > xemacs-beta
view move-if-change @ 4443:e7b3a3266356
No doc special-case for autoloads; rely on on #'symbol-file instead.
2008-04-10 Aidan Kehoe <kehoea@parhasard.net>
* help.el (describe-function-1):
Rely on #'symbol-file to tell which file an autoloaded function
belongs to, don't special-case them.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Thu, 10 Apr 2008 00:31:27 +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