aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 7ee5d921419..06532ce2f5c 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -448,6 +448,11 @@ struct buffer_text
448 successive elements in its marker `chain' 448 successive elements in its marker `chain'
449 are the other markers referring to this buffer. */ 449 are the other markers referring to this buffer. */
450 struct Lisp_Marker *markers; 450 struct Lisp_Marker *markers;
451
452 /* Usually 0. Temporarily set to 1 in decode_coding_gap to
453 prevent Fgarbage_collect from shrinking the gap and loosing
454 not-yet-decoded bytes. */
455 int inhibit_shrinking;
451 }; 456 };
452 457
453/* This is the structure that the buffer Lisp object points to. */ 458/* This is the structure that the buffer Lisp object points to. */