I don't get an error in emacs. I get them all in xemacs. Seems
like there is no such thing like popup-menu-mode in xemacs-21.4.5.
Even if there was popup-mode-menu my xemacs-21.4.5. doesn't know
defadvice either.
I think I can live without that block, but now I ran into a problem
with not having regexp-opt, can somebody help me with that ?
Thomas
On Mon, 12 Nov 2001, Per Abrahamsen wrote:
There is no such think as 'popup-mode-menu' in any version of
Emacs,
it is part of the XEmacs support:
;;; Special support for XEmacs
(when (featurep 'xemacs)
(defadvice popup-mode-menu (before LaTeX-update activate)
"Run `LaTeX-menu-update' before showing menu."
(and (fboundp 'LaTeX-menu-update)
(LaTeX-menu-update)))
The code should obviously be rewritten to use :filter to be cleaner,
but I don't know why Thomas Witzel gets these errors.