From 62a8fbc7892d53ee81caaa8361ca6407976245f0 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Fri, 2 Sep 2016 14:37:44 +0200 Subject: Emacs: Workaround strange menu error --- tag-emacs/emacs.d/init.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tag-emacs/emacs.d') diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 87cd664..21228f4 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -1917,7 +1917,8 @@ it though (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) -- cgit 1.4.1