# HG changeset patch # User Richard M. Stallman # Date 794961330 0 # Node ID e55f4cc120b6f86ed221c0b65dbd3702cf6f365f # Parent 1ade2d8b0ae92a5b2005839495e89119ba61b8b8 (struct buffer): New field `invisibility_spec'. diff -r 1ade2d8b0ae9 -r e55f4cc120b6 src/buffer.h --- a/src/buffer.h Sat Mar 11 22:34:35 1995 +0000 +++ b/src/buffer.h Sat Mar 11 22:35:30 1995 +0000 @@ -389,6 +389,12 @@ /* Truename of the visited file, or nil. */ Lisp_Object file_truename; + + /* Invisibility spec of this buffer. + t => any non-nil `invisible' property means invisible. + A list => `invisible' property means invisible + if it is memq in that list. */ + Lisp_Object invisibility_spec; }; /* This points to the current buffer. */