summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2024-06-21 20:04:58 +0200
committerStefan Kangas <stefankangas@gmail.com>2024-06-21 20:07:50 +0200
commit31e3d5fe9b9ba822bcc86d444298e7cafac01d3c (patch)
tree0fca6ca7141c733e5a9350fd6bd587932a68c08a /lisp
parent052d2cd2582dbdd3bb4d4e68d5f4dce588ed06e2 (diff)
downloademacs-31e3d5fe9b9ba822bcc86d444298e7cafac01d3c.tar.gz
emacs-31e3d5fe9b9ba822bcc86d444298e7cafac01d3c.tar.bz2
emacs-31e3d5fe9b9ba822bcc86d444298e7cafac01d3c.zip
Fix `emacs --geometry` flag on macOS
* lisp/startup.el (command-line-ns-option-alist): Fix --geometry flag on macOS. (Bug#71669)
Diffstat (limited to 'lisp')
-rw-r--r--lisp/startup.el2
1 files changed, 1 insertions, 1 deletions
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)