1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-15 11:21:19 -07:00

(struct buffer_text): New member inhibit_shrinking.

This commit is contained in:
Kenichi Handa 2007-02-23 06:02:58 +00:00
parent 287c57d78e
commit e9728cc029

View file

@ -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. */