emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/ace-window a2f1dd5 61/92: ace-window.el (aw--face-rel-h


From: Stefan Monnier
Subject: [elpa] externals/ace-window a2f1dd5 61/92: ace-window.el (aw--face-rel-height): Fix for int height
Date: Wed, 17 Mar 2021 18:39:22 -0400 (EDT)

branch: externals/ace-window
commit a2f1dd5c28281474669ce52a796b8f4dda924cce
Author: Oleh Krehel <ohwoeowho@gmail.com>
Commit: Oleh Krehel <ohwoeowho@gmail.com>

    ace-window.el (aw--face-rel-height): Fix for int height
    
    Fixes #157
---
 ace-window.el | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ace-window.el b/ace-window.el
index f660b55..fc8a592 100644
--- a/ace-window.el
+++ b/ace-window.el
@@ -762,6 +762,8 @@ Modify `aw-fair-aspect-ratio' to tweak behavior."
        1)
       ((floatp h)
        (1+ (floor h)))
+      ((integerp h)
+       1)
       (t
        (error "unexpected: %s" h)))))
 



reply via email to

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