Mercurial > emacs
diff src/buffer.h @ 90773:19c4543f1154
(struct buffer_text): New member inhibit_shrinking.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Fri, 23 Feb 2007 06:02:58 +0000 |
| parents | 95d0cdf160ea |
| children | 3371fc48749b |
line wrap: on
line diff
--- a/src/buffer.h Fri Feb 23 06:02:23 2007 +0000 +++ b/src/buffer.h Fri Feb 23 06:02:58 2007 +0000 @@ -448,6 +448,11 @@ 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. */
