Work around stuff setting the split-window param

This commit is contained in:
Vasilij Schneidermann
2016-10-27 21:12:17 +02:00
parent 90b6b364bb
commit 8381052d8f

View File

@ -259,7 +259,10 @@ This function keeps the sortedness intact."
(when (version< emacs-version "25") (when (version< emacs-version "25")
(delete-other-windows) (delete-other-windows)
(set-window-dedicated-p nil nil)) (set-window-dedicated-p nil nil))
(window-state-put (cadr match) (frame-root-window)))) ;; KLUDGE: workaround for visual-fill-column foolishly
;; setting the split-window parameter
(let ((ignore-window-parameters t))
(window-state-put (cadr match) (frame-root-window)))))
(defun eyebrowse--read-slot () (defun eyebrowse--read-slot ()
"Read in a window config SLOT to switch to. "Read in a window config SLOT to switch to.