branch: elpa/golden-ratio
commit 19bacbeaeeb472557d9b5ef3d76ba918ae2d73b6
Author: Thierry Volpiatto <[email protected]>
Commit: Thierry Volpiatto <[email protected]>
* golden-ratio.el (golden-ratio--resize-window): Remove unuseful nil arg.
---
golden-ratio.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/golden-ratio.el b/golden-ratio.el
index c6607f5d61..d2611bb1b9 100644
--- a/golden-ratio.el
+++ b/golden-ratio.el
@@ -65,7 +65,7 @@ will not cause the window to be resized to the golden ratio."
(let ((nrow (floor (- (first dimensions) (window-height-after-balance))))
(ncol (floor (- (second dimensions) (window-width-after-balance)))))
(when (window-resizable-p (selected-window) nrow)
- (enlarge-window nrow nil))
+ (enlarge-window nrow))
(when (window-resizable-p (selected-window) ncol t)
(enlarge-window ncol t)))))