Pacify Ubuntu GCC 13.2 in set_marker_internal

* src/marker.c (set_marker_internal): Ignore
-Wanalyzer-deref-before-check, to work around GCC bug 113253.
This commit is contained in:
Paul Eggert 2024-01-06 13:38:13 -08:00
parent 166b10e9f8
commit 0b312e310d

View file

@ -20,6 +20,11 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <config.h>
/* Work around GCC bug 113253. */
#if 13 <= __GNUC__
# pragma GCC diagnostic ignored "-Wanalyzer-deref-before-check"
#endif
#include "lisp.h"
#include "character.h"
#include "buffer.h"