emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master fa14638: Fix customization type of `even-window-siz


From: Martin Rudalics
Subject: [Emacs-diffs] master fa14638: Fix customization type of `even-window-sizes'.
Date: Wed, 22 Jul 2015 10:35:06 +0000

branch: master
commit fa1463896d5048e0e43a9b55db1ed82c6441e693
Author: Martin Rudalics <address@hidden>
Commit: Martin Rudalics <address@hidden>

    Fix customization type of `even-window-sizes'.
    
    * lisp/window.el (even-window-sizes): Fix customization type.
---
 lisp/window.el |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/lisp/window.el b/lisp/window.el
index 1a76ece..f15dd9b 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)
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]