aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-21 23:14:59 +0000
committerRichard M. Stallman1995-10-21 23:14:59 +0000
commit637df16f38d9ebe4e6032378828d9c49248d1dbb (patch)
tree6de4d79103c36e09899730ff3f05f6e241d8fa1e /src/buffer.h
parentfb2030e306dc2f8932f03cf8db45c7ee72d8dba7 (diff)
downloademacs-637df16f38d9ebe4e6032378828d9c49248d1dbb.tar.gz
emacs-637df16f38d9ebe4e6032378828d9c49248d1dbb.zip
(struct buffer): New slot redisplay_end_trigger.
Also extra1, extra2, extra3.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 66f10e80a74..9f9eb7043ca 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -402,6 +402,14 @@ struct buffer
402 A list => `invisible' property means invisible 402 A list => `invisible' property means invisible
403 if it is memq in that list. */ 403 if it is memq in that list. */
404 Lisp_Object invisibility_spec; 404 Lisp_Object invisibility_spec;
405
406 /* If redisplay goes beyond this point in the buffer,
407 run redisplay-end-trigger-hook. */
408 Lisp_Object redisplay_end_trigger;
409
410 /* These are so we don't have to recompile everything
411 the next few times we add a new slot. */
412 Lisp_Object extra1, extra2, extra3;
405 }; 413 };
406 414
407/* This points to the current buffer. */ 415/* This points to the current buffer. */