comparison src/buffer.h @ 10966:e55f4cc120b6

(struct buffer): New field `invisibility_spec'.
author Richard M. Stallman <rms@gnu.org>
date Sat, 11 Mar 1995 22:35:30 +0000
parents 7bf07f10bed3
children e1e834b78a79
comparison
equal deleted inserted replaced
10965:1ade2d8b0ae9 10966:e55f4cc120b6
387 Explicitly setting point sets this to nil. */ 387 Explicitly setting point sets this to nil. */
388 Lisp_Object point_before_scroll; 388 Lisp_Object point_before_scroll;
389 389
390 /* Truename of the visited file, or nil. */ 390 /* Truename of the visited file, or nil. */
391 Lisp_Object file_truename; 391 Lisp_Object file_truename;
392
393 /* Invisibility spec of this buffer.
394 t => any non-nil `invisible' property means invisible.
395 A list => `invisible' property means invisible
396 if it is memq in that list. */
397 Lisp_Object invisibility_spec;
392 }; 398 };
393 399
394 /* This points to the current buffer. */ 400 /* This points to the current buffer. */
395 401
396 extern struct buffer *current_buffer; 402 extern struct buffer *current_buffer;