emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-27 6c5ddf0: Fix two small tab bar issues


From: Martin Rudalics
Subject: emacs-27 6c5ddf0: Fix two small tab bar issues
Date: Sat, 6 Feb 2021 03:31:39 -0500 (EST)

branch: emacs-27
commit 6c5ddf0e0bc4e3e3ed819835f00419b7289d33c7
Author: Martin Rudalics <rudalics@gmx.at>
Commit: Martin Rudalics <rudalics@gmx.at>

    Fix two small tab bar issues
    
    * lisp/cus-start.el (frame-inhibit-implied-resize): Update version tag.
    * lisp/frame.el (frame-inner-height): Do not count in tab bar.
---
 lisp/cus-start.el | 2 +-
 lisp/frame.el     | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/lisp/cus-start.el b/lisp/cus-start.el
index 4b7c386..b7f0d7e 100644
--- a/lisp/cus-start.el
+++ b/lisp/cus-start.el
@@ -336,7 +336,7 @@ Leaving \"Default\" unchecked is equivalent with specifying 
a default of
                                            (const :tag "Never" nil)
                                            (const :tag "Always" t)
                                            (repeat (symbol :tag "Parameter")))
-                                          "25.1")
+                                          "27.1")
             (iconify-child-frame frames
                                  (choice
                                   (const :tag "Do nothing" nil)
diff --git a/lisp/frame.el b/lisp/frame.el
index 7f1b8af..15e46c9 100644
--- a/lisp/frame.el
+++ b/lisp/frame.el
@@ -1344,6 +1344,7 @@ FRAME defaults to the selected frame."
 FRAME defaults to the selected frame."
   (setq frame (window-normalize-frame frame))
   (- (frame-native-height frame)
+     (tab-bar-height frame t)
      (* 2 (frame-internal-border-width frame))))
 
 (defun frame-outer-width (&optional frame)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]