]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert "; Fix coding style in just installed change"
authorEli Zaretskii <eliz@gnu.org>
Fri, 23 Jun 2023 10:47:33 +0000 (13:47 +0300)
committerEli Zaretskii <eliz@gnu.org>
Fri, 23 Jun 2023 10:47:33 +0000 (13:47 +0300)
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

index 801da24ffbfbfe78704c8fb60efeb3603be52883..58f98e783547f4ef11b181817502fad6a2f07f23 100644 (file)
@@ -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)