From 31e3d5fe9b9ba822bcc86d444298e7cafac01d3c Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Fri, 21 Jun 2024 20:04:58 +0200 Subject: [PATCH] Fix `emacs --geometry` flag on macOS * lisp/startup.el (command-line-ns-option-alist): Fix --geometry flag on macOS. (Bug#71669) --- lisp/startup.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/startup.el b/lisp/startup.el index 1ffdf52ea85..f18795ae6ac 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -260,7 +260,7 @@ and VALUE is the value which is given to that frame parameter ("--reverse-video" 0 x-handle-switch reverse t) ("--font" 1 x-handle-switch font) ("--internal-border" 1 x-handle-numeric-switch internal-border-width) - ;; ("--geometry" 1 ns-handle-geometry) + ("--geometry" 1 x-handle-geometry) ("--foreground-color" 1 x-handle-switch foreground-color) ("--background-color" 1 x-handle-switch background-color) ("--mouse-color" 1 x-handle-switch mouse-color)