From: Martin Rudalics Date: Wed, 22 Jul 2015 10:34:41 +0000 (+0200) Subject: Fix customization type of `even-window-sizes'. X-Git-Tag: emacs-25.0.90~1446 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa1463896d5048e0e43a9b55db1ed82c6441e693;p=emacs.git Fix customization type of `even-window-sizes'. * lisp/window.el (even-window-sizes): Fix customization type. --- 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)