emacs-diffs
[Top][All Lists]
Advanced

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

master ddf508e8acb 3/5: Revert "; Fix coding style in just installed cha


From: Eli Zaretskii
Subject: master ddf508e8acb 3/5: Revert "; Fix coding style in just installed change"
Date: Fri, 23 Jun 2023 06:52:34 -0400 (EDT)

branch: master
commit ddf508e8acbe7ad29879dd0a5e341a6acea5c772
Author: Eli Zaretskii <eliz@gnu.org>
Commit: Eli Zaretskii <eliz@gnu.org>

    Revert "; Fix coding style in just installed change"
    
    This reverts commit 229f0b8dd3b92827b6e0c6fc105508e8b80858f5.
    This is part of removing the recently-added feature whereby
    certain non-nil values of 'header-line-format' could signal
    that the header line shall not be displayed.  The feature is
    being reverted because its advantages are very minor, whereas
    the complications it causes are serious.
---
 src/window.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/window.c b/src/window.c
index 801da24ffbf..58f98e78354 100644
--- a/src/window.c
+++ b/src/window.c
@@ -5529,10 +5529,10 @@ null_header_line_format (Lisp_Object fmt, struct frame 
*f)
 bool
 window_wants_header_line (struct window *w)
 {
-  Lisp_Object window_header_line_format
-    = window_parameter (w, Qheader_line_format);
+  Lisp_Object window_header_line_format =
+    window_parameter (w, Qheader_line_format);
 
-  struct frame *f = WINDOW_XFRAME (w);
+  struct frame *f = WINDOW_XFRAME(w);
 
   return (WINDOW_LEAF_P (w)
          && !MINI_WINDOW_P (w)



reply via email to

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