I said in a mail a few minutes ago:

> o Fix
> 
>   o  In the file vm-5.xx/make-autoloads, change one line from
> 
>         (setq macro t)
>      to
>         (setq macro 'macro)
> 
>   o Byte-compile vm.  It should not matter whether you compile vm with
>     or without autoloads now.
> 
>   o Make sure you byte-compile bbdb AFTER you byte-compile VM!

It looks like two lines have to be changed rather than one in
make-autoloads file.
In my haste to get this out of the way and go on to real work,
I did not test this before sending out my last mail.  Sorry for this.
Here is the correct fix for make-autoloads:

diff -r1.1 make-autoloads
20c20
<                     (setq macro t)
---
>                     (setq macro 'macro)
37c37,39
<                              doc interactive macro)))))
---
>                              doc interactive
>                              (and macro (list 'quote macro))
>                              )))))

Richard Y. Kim
[EMAIL PROTECTED]

Reply via email to