Steve Youngs <youngs(a)xemacs.org> writes:
I don't suppose we could wrap the autoload cookie in a
'(if (featurep 'mule)...)', could we?
I think you can, if you make an explicit autoload form (untested):
;;;###autoload
(when-feature 'mule
(autoload 'japanese-latex-mode "tex-jp" nil t))
(defun japanese-latex-mode
If this is going to happen more often, we really need something along
the lines of
;;;###autoload-mule
That does the when-feature thing automagically.
Now the big question is. Is this enough to avoid confusing update-autoloads?
Jan