aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorPo Lu2023-05-15 10:38:10 +0800
committerPo Lu2023-05-15 10:38:10 +0800
commita46e231a5f27c46933cc53865cee452ad1a0c0d3 (patch)
tree8694852f6b7fd201736cf48a0f72f139a9a76ff8 /src/buffer.c
parent45ab9158cf1a94041ad65c66818dde56e7c1c43b (diff)
parentebf5e4ca1cd39d3f23c4e37d9bdfeb2bf347df6d (diff)
downloademacs-a46e231a5f27c46933cc53865cee452ad1a0c0d3.tar.gz
emacs-a46e231a5f27c46933cc53865cee452ad1a0c0d3.zip
Merge remote-tracking branch 'origin/master' into feature/android
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 242f4509e7d..668c7035724 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -50,6 +50,14 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
50#include "w32heap.h" /* for mmap_* */ 50#include "w32heap.h" /* for mmap_* */
51#endif 51#endif
52 52
53/* Work around GCC bug 109847
54 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109847
55 which causes GCC to mistakenly complain about
56 AUTO_STRING with "*scratch*". */
57#if GNUC_PREREQ (13, 0, 0)
58# pragma GCC diagnostic ignored "-Wanalyzer-out-of-bounds"
59#endif
60
53/* This structure holds the default values of the buffer-local variables 61/* This structure holds the default values of the buffer-local variables
54 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer. 62 defined with DEFVAR_PER_BUFFER, that have special slots in each buffer.
55 The default value occupies the same slot in this structure 63 The default value occupies the same slot in this structure