From: Richard M. Stallman Date: Sat, 21 Oct 1995 23:14:59 +0000 (+0000) Subject: (struct buffer): New slot redisplay_end_trigger. X-Git-Tag: emacs-19.34~2596 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=637df16f38d9ebe4e6032378828d9c49248d1dbb;p=emacs.git (struct buffer): New slot redisplay_end_trigger. Also extra1, extra2, extra3. --- 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 A list => `invisible' property means invisible if it is memq in that list. */ Lisp_Object invisibility_spec; + + /* If redisplay goes beyond this point in the buffer, + run redisplay-end-trigger-hook. */ + Lisp_Object redisplay_end_trigger; + + /* These are so we don't have to recompile everything + the next few times we add a new slot. */ + Lisp_Object extra1, extra2, extra3; }; /* This points to the current buffer. */