From 2d458392f99b06b885bef03fd21314fdc17e1ffa Mon Sep 17 00:00:00 2001 From: Jan Tatarik Date: Tue, 19 May 2015 22:46:54 +0200 Subject: [PATCH] lv-window: split-window ignores window parameters fix lv-window failure in presence of a bottom window with no-other-window window parameter set to t --- lv.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lv.el b/lv.el index e4425a2..8d6192f 100644 --- a/lv.el +++ b/lv.el @@ -62,8 +62,9 @@ Only the background color is significant." buf) (prog1 (setq lv-wnd (select-window - (split-window - (frame-root-window) -1 'below))) + (let ((ignore-window-parameters t)) + (split-window + (frame-root-window) -1 'below)))) (if (setq buf (get-buffer "*LV*")) (switch-to-buffer buf) (switch-to-buffer "*LV*")