From: Richard M. Stallman Date: Sat, 11 Mar 1995 22:35:30 +0000 (+0000) Subject: (struct buffer): New field `invisibility_spec'. X-Git-Tag: emacs-19.34~4892 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4abe97d9b4118c1de1f2fd227d250883af5bf3b5;p=emacs.git (struct buffer): New field `invisibility_spec'. --- diff --git a/src/buffer.h b/src/buffer.h index c19e4f30846..af3dd0400e3 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -389,6 +389,12 @@ struct buffer /* 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. */