Here are the lines from Local.rules:
# Should we build the mule package? Set to 't' if you do not have/want Mule.
#
BUILD_WITHOUT_MULE = t
But I guess that 'batch-update-directory .' searches for all .el files
in the current directory.
- vin
Gunnar Evermann <ge204(a)eng.cam.ac.uk> writes:
Vin Shelton <acs(a)xemacs.org> writes:
> When I try to 'make autoloads' in the latest auctex in my non-mule
> XEmacs, I get the following error:
>
> Generating autoloads for auctex/tex-jp.el...
> Unbalanced parentheses
> xemacs exiting.
> make: *** [auto-autoloads.el] Error 255
We have had this problem in the past and the Makefile contains some
magic to deal with this:
ifeq ($(BUILD_WITHOUT_MULE),)
ELCS += tex-jp.elc
endif
What value do you set BUILD_WITHOUT_MULE to in your Local.rules?
Gunnar