aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/menu-bar.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 42f48c784e1..b2146bed3bd 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -413,8 +413,9 @@
413 menu)) 413 menu))
414 414
415(defun menu-bar-goto-uses-etags-p () 415(defun menu-bar-goto-uses-etags-p ()
416 (or (not (boundp 'xref-find-function)) 416 (if (boundp 'xref-find-function)
417 (eq xref-find-function 'etags-xref-find))) 417 (eq xref-find-function 'etags-xref-find)
418 t))
418 419
419(defvar yank-menu (cons (purecopy "Select Yank") nil)) 420(defvar yank-menu (cons (purecopy "Select Yank") nil))
420(fset 'yank-menu (cons 'keymap yank-menu)) 421(fset 'yank-menu (cons 'keymap yank-menu))