aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Eggert2025-02-04 16:56:56 -0800
committerPaul Eggert2025-02-04 16:57:42 -0800
commit4aab2f45b3dc39f4ebe4e09fd4e3b56b757843aa (patch)
tree20f0d1ad5b940b6a3714388b51d59e2e217a9704
parent999d054dc1e265f1a39c10035a3a3f7f75de8445 (diff)
downloademacs-4aab2f45b3dc39f4ebe4e09fd4e3b56b757843aa.tar.gz
emacs-4aab2f45b3dc39f4ebe4e09fd4e3b56b757843aa.zip
Remove no-longer-needed delete_frame UNINIT
* src/frame.c (delete_frame): Remove a local with UNINIT that is no longer needed now that GCC bug#85563 is fixed, as we don’t need to worry about porting --enable-gcc-warnings to older GCC. This change reverts this part of my commit “Port --enable-gcc-warnings to GCC 8” 8c3215e7a47e3caaa005bf573765ed63e0739b89 dated Sat Apr 28 16:49:24 2018 -0700.
-rw-r--r--src/frame.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index cac9b0a4acd..6e125b9561c 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -2481,7 +2481,6 @@ delete_frame (Lisp_Object frame, Lisp_Object force)
2481 else 2481 else
2482 { 2482 {
2483 Lisp_Object tail; 2483 Lisp_Object tail;
2484 Lisp_Object frame1 UNINIT; /* This line works around GCC bug 85563. */
2485 eassume (CONSP (Vframe_list)); 2484 eassume (CONSP (Vframe_list));
2486 2485
2487 /* Look for another visible frame on the same terminal. 2486 /* Look for another visible frame on the same terminal.