From 3e74cf65161841ee4a0a584fdbba8958372753f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20Mart=C3=ADn?= Date: Tue, 14 Jun 2022 14:23:06 +0200 Subject: [PATCH] Bind Cmd-t to menu-set-font on macOS * lisp/term/ns-win.el (global-map): set-frame-font asks for a font using the minibuffer, but the former ns-popup-font-panel always showed the graphical font panel on macOS. To preserve the same behavior, bind it to menu-set-font, which is also called by Options, Set Default Font (bug#55967). --- lisp/term/ns-win.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/term/ns-win.el b/lisp/term/ns-win.el index 677ebb400e0..84c5b087b9a 100644 --- a/lisp/term/ns-win.el +++ b/lisp/term/ns-win.el @@ -142,7 +142,7 @@ The properties returned may include `top', `left', `height', and `width'." (define-key global-map [?\s-p] 'ns-print-buffer) (define-key global-map [?\s-q] 'save-buffers-kill-emacs) (define-key global-map [?\s-s] 'save-buffer) -(define-key global-map [?\s-t] 'set-frame-font) +(define-key global-map [?\s-t] 'menu-set-font) (define-key global-map [?\s-u] 'revert-buffer) (define-key global-map [?\s-v] 'yank) (define-key global-map [?\s-w] 'delete-frame) -- 2.39.2