Emacs: Workaround strange menu error
1 file changed, 2 insertions(+), 1 deletion(-)
jump to
M tag-emacs/emacs.d/init.org → tag-emacs/emacs.d/init.org
@@ -1917,7 +1917,8 @@ :config (progn (define-key js2-mode-map [menu-bar Javascript] nil) (defun js2--imenu-around (do-it name) "Don't create a menu from js2-mode" - (unless (string-equal name "IM-Javascript-IDE") + (if (and (not (string-equal name "IM-Javascript-IDE")) + (fboundp #'do-it)) (do-it name))) (advice-add 'imenu-add-to-menubar :around #'js2--imenu-around) (setq js2-skip-preprocessor-directives t)