comparison src/buffer.h @ 13763:89bb535d206d

(struct buffer): Delete redisplay_end_trigger field.
author Karl Heuer <kwzh@gnu.org>
date Thu, 21 Dec 1995 16:56:26 +0000
parents 4e7bb697c847
children ee40177f6c68
comparison
equal deleted inserted replaced
13762:71c14edf7d6d 13763:89bb535d206d
401 t => any non-nil `invisible' property means invisible. 401 t => any non-nil `invisible' property means invisible.
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 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 406 /* These are so we don't have to recompile everything
411 the next few times we add a new slot. */ 407 the next few times we add a new slot. */
412 Lisp_Object extra1, extra2, extra3; 408 Lisp_Object extra1, extra2, extra3;
413 }; 409 };
414 410