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:
parent
166b10e9f8
commit
0b312e310d
1 changed files with 5 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue