In window--min-size-1 set WINDOW arg when calling window-min-pixel-height/-width.
* window.el (window--min-size-1): Explicitly set WINDOW arg in calls of window-min-pixel-height and window-min-pixel-width.
This commit is contained in:
parent
b110679002
commit
7aa06c9cb8
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2014-08-07 Martin Rudalics <rudalics@gmx.at>
|
||||
|
||||
* window.el (window--min-size-1): Explicitly set WINDOW arg in
|
||||
calls of window-min-pixel-height and window-min-pixel-width.
|
||||
|
||||
2014-08-07 Reuben Thomas <rrt@sc3d.org>
|
||||
|
||||
* progmodes/ada-mode.el:
|
||||
|
|
|
@ -1297,7 +1297,7 @@ of WINDOW."
|
|||
(* (ceiling pixel-width char-size) char-size))
|
||||
(if (window--size-ignore-p window ignore)
|
||||
0
|
||||
(window-min-pixel-width)))
|
||||
(window-min-pixel-width window)))
|
||||
(max
|
||||
(ceiling pixel-width char-size)
|
||||
(if (window--size-ignore-p window ignore)
|
||||
|
@ -1318,7 +1318,7 @@ of WINDOW."
|
|||
(* (ceiling pixel-height char-size) char-size))
|
||||
(if (window--size-ignore-p window ignore)
|
||||
0
|
||||
(window-min-pixel-height)))
|
||||
(window-min-pixel-height window)))
|
||||
(max (ceiling pixel-height char-size)
|
||||
(if (window--size-ignore-p window ignore)
|
||||
0
|
||||
|
|
Loading…
Add table
Reference in a new issue