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

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

[elpa] master 2d45839 03/22: lv-window: split-window ignores window para


From: Oleh Krehel
Subject: [elpa] master 2d45839 03/22: lv-window: split-window ignores window parameters
Date: Fri, 16 Oct 2015 10:06:54 +0000

branch: master
commit 2d458392f99b06b885bef03fd21314fdc17e1ffa
Author: Jan Tatarik <address@hidden>
Commit: Jan Tatarik <address@hidden>

    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 files 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*")



reply via email to

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