From a2f1dd5c28281474669ce52a796b8f4dda924cce Mon Sep 17 00:00:00 2001 From: Oleh Krehel Date: Fri, 1 Feb 2019 19:40:30 +0100 Subject: [PATCH] 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)))))