From e9728cc0296df2e01a252b48c940dd596207390a Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Fri, 23 Feb 2007 06:02:58 +0000 Subject: [PATCH] (struct buffer_text): New member inhibit_shrinking. --- src/buffer.h | 5 +++++ 1 file changed, 5 insertions(+) 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 successive elements in its marker `chain' are the other markers referring to this buffer. */ struct Lisp_Marker *markers; + + /* Usually 0. Temporarily set to 1 in decode_coding_gap to + prevent Fgarbage_collect from shrinking the gap and loosing + not-yet-decoded bytes. */ + int inhibit_shrinking; }; /* This is the structure that the buffer Lisp object points to. */ -- 2.39.5