emacs-diffs
[Top][All Lists]
Advanced

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

master 1283c2d 1/5: Merge from origin/emacs-28


From: Glenn Morris
Subject: master 1283c2d 1/5: Merge from origin/emacs-28
Date: Tue, 12 Oct 2021 10:57:07 -0400 (EDT)

branch: master
commit 1283c2db5c3a846046612617f0b83f76d885e963
Merge: a1477eb 0d374b1
Author: Glenn Morris <rgm@gnu.org>
Commit: Glenn Morris <rgm@gnu.org>

    Merge from origin/emacs-28
    
    0d374b1b83 Work around GCC bug 102671
---
 src/timefns.c | 5 +++++
 src/window.c  | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/src/timefns.c b/src/timefns.c
index f0e2e97..a9921cd 100644
--- a/src/timefns.c
+++ b/src/timefns.c
@@ -19,6 +19,11 @@ along with GNU Emacs.  If not, see 
<https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
+/* Work around GCC bug 102671.  */
+#if 10 <= __GNUC__
+# pragma GCC diagnostic ignored "-Wanalyzer-null-dereference"
+#endif
+
 #include "systime.h"
 
 #include "blockinput.h"
diff --git a/src/window.c b/src/window.c
index a6e8ee0..ec3c941 100644
--- a/src/window.c
+++ b/src/window.c
@@ -20,6 +20,11 @@ along with GNU Emacs.  If not, see 
<https://www.gnu.org/licenses/>.  */
 
 #include <config.h>
 
+/* Work around GCC bug 102671.  */
+#if 10 <= __GNUC__
+# pragma GCC diagnostic ignored "-Wanalyzer-null-dereference"
+#endif
+
 #include "lisp.h"
 #include "buffer.h"
 #include "keyboard.h"



reply via email to

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