aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorKenichi Handa2007-02-23 06:02:58 +0000
committerKenichi Handa2007-02-23 06:02:58 +0000
commite9728cc0296df2e01a252b48c940dd596207390a (patch)
treeab07094d4496576003d9731c057ca966e3482f55 /src/buffer.h
parent287c57d78eef8cba4bc15bac9f0bcd2803ae8669 (diff)
downloademacs-e9728cc0296df2e01a252b48c940dd596207390a.tar.gz
emacs-e9728cc0296df2e01a252b48c940dd596207390a.zip
(struct buffer_text): New member inhibit_shrinking.
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. */