From fa1463896d5048e0e43a9b55db1ed82c6441e693 Mon Sep 17 00:00:00 2001 From: Martin Rudalics Date: Wed, 22 Jul 2015 12:34:41 +0200 Subject: [PATCH] Fix customization type of `even-window-sizes'. * lisp/window.el (even-window-sizes): Fix customization type. --- lisp/window.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/window.el b/lisp/window.el index 1a76ecec34d..f15dd9b7355 100644 --- a/lisp/window.el +++ b/lisp/window.el @@ -6096,7 +6096,12 @@ Otherwise `display-buffer' will leave the window configuration alone. Special values are `height-only' to even heights only and `width-only' to even widths only. Any other value means to even any of them." - :type 'boolean + :type '(choice + (const :tag "Never" nil) + (const :tag "Side-by-side windows only" width-only) + (const :tag "Windows above or below only" height-only) + (const :tag "Always" t)) + :version "25.1" :group 'windows) (defvaralias 'even-window-heights 'even-window-sizes) -- 2.39.2