From: Stefan Kangas Date: Fri, 21 Jun 2024 18:04:58 +0000 (+0200) Subject: Fix `emacs --geometry` flag on macOS X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b4bd3d68d0905f118ccacf1bf9b122ebc7af46ab;p=emacs.git Fix `emacs --geometry` flag on macOS * lisp/startup.el (command-line-ns-option-alist): Fix --geometry flag on macOS. (Bug#71669) (cherry picked from commit 31e3d5fe9b9ba822bcc86d444298e7cafac01d3c) --- 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)