]> git.eshelyaron.com Git - emacs.git/commitdiff
Remove some compat code from window.el
authorLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 09:32:06 +0000 (11:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 18 Aug 2020 09:32:06 +0000 (11:32 +0200)
* lisp/window.el (window-fixed-size-p): Remove check for
window-size-fixed, which is always defined.

lisp/window.el

index f20940fa0ea15770e701e0c3baf530b05723de54..c02c9f37ee69f63de4f27d4dd172cee71486e811 100644 (file)
@@ -5729,10 +5729,10 @@ window."
 WINDOW defaults to the selected window.  DIRECTION can be
 nil (i.e. any), `height' or `width'."
   (with-current-buffer (window-buffer window)
-    (when (and (boundp 'window-size-fixed) window-size-fixed)
-      (not (and direction
-               (member (cons direction window-size-fixed)
-                       '((height . width) (width . height))))))))
+    (and window-size-fixed
+         (not (and direction
+                  (member (cons direction window-size-fixed)
+                          '((height . width) (width . height))))))))
 
 ;;; A different solution to balance-windows.
 (defvar window-area-factor 1