mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix last fix of window--display-buffer.
This commit is contained in:
parent
0e8bc99034
commit
1bc834133d
1 changed files with 2 additions and 2 deletions
|
|
@ -5191,7 +5191,7 @@ BUFFER and WINDOW are live."
|
|||
height))))
|
||||
(delta (- new-height (window-total-size window))))
|
||||
(cond
|
||||
((and (window-resizable-p window delta nil 'safe)
|
||||
((and (window--resizable-p window delta nil 'safe)
|
||||
(window-combined-p window))
|
||||
(window-resize window delta nil 'safe))
|
||||
((or (eq type 'frame)
|
||||
|
|
@ -5214,7 +5214,7 @@ BUFFER and WINDOW are live."
|
|||
width))))
|
||||
(delta (- new-width (window-total-size window t))))
|
||||
(cond
|
||||
((and (window-resizable-p window delta t 'safe)
|
||||
((and (window--resizable-p window delta t 'safe)
|
||||
(window-combined-p window t))
|
||||
(window-resize window delta t 'safe))
|
||||
((or (eq type 'frame)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue