From 12d3bfc01d6632fb8a903dd757ee9574da96e420 Mon Sep 17 00:00:00 2001 From: Jared Finder Date: Thu, 17 Sep 2020 22:37:00 -0700 Subject: [PATCH 1/3] Fixing small bugs in tmm.el. * `tmm-menubar-keymap' now properly sorts final items. * `tmm-menubar' allows clicks on the final menu item. --- lisp/tmm.el | 23 +++++++++++++++-------- src/keyboard.c | 3 ++- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/lisp/tmm.el b/lisp/tmm.el index e9f3f5b038..074ee7593f 100644 --- a/lisp/tmm.el +++ b/lisp/tmm.el @@ -50,14 +50,18 @@ tmm-menubar-keymap (menu-end '())) (map-keymap (lambda (key binding) - (push (cons key binding) - ;; If KEY is the name of an item that we want to put last, - ;; move it to the end. - (if (memq key menu-bar-final-items) - menu-end - menu-bar))) + (let ((pos (seq-position menu-bar-final-items key)) + (menu-item (cons key binding))) + (if pos + ;; If KEY is the name of an item that we want to put + ;; last, store it separately with explicit ordering for + ;; sorting. + (push (cons pos menu-item) menu-end) + (push menu-item menu-bar)))) (tmm-get-keybind [menu-bar])) - `(keymap ,@(nreverse menu-bar) ,@(nreverse menu-end)))) + `(keymap ,@(nreverse menu-bar) + ,@(mapcar 'cdr (sort menu-end + (lambda (a b) (< (car a) (car b)))))))) ;;;###autoload (define-key global-map "\M-`" 'tmm-menubar) ;;;###autoload (define-key global-map [menu-bar mouse-1] 'tmm-menubar-mouse) @@ -96,7 +100,10 @@ tmm-menubar (or (null visible) (eval visible))))))) (setq column (+ column (length name) 1))))) - menu-bar)))) + menu-bar) + ;; Check the last menu item. + (when (> column x-position) + (setq menu-bar-item prev-key))))) (tmm-prompt menu-bar nil menu-bar-item))) ;;;###autoload diff --git a/src/keyboard.c b/src/keyboard.c index af075a42c7..ea5f961304 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -12106,7 +12106,8 @@ syms_of_keyboard (void) DEFVAR_LISP ("menu-bar-final-items", Vmenu_bar_final_items, doc: /* List of menu bar items to move to the end of the menu bar. -The elements of the list are event types that may have menu bar bindings. */); +The order of this list controls the order of the items. The elements of the list +are event types that may have menu bar bindings. */); Vmenu_bar_final_items = Qnil; DEFVAR_LISP ("tab-bar-separator-image-expression", Vtab_bar_separator_image_expression, -- 2.20.1