aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
authorRichard M. Stallman1995-03-11 22:35:30 +0000
committerRichard M. Stallman1995-03-11 22:35:30 +0000
commit4abe97d9b4118c1de1f2fd227d250883af5bf3b5 (patch)
tree64bafdbf9298f90778cd659b64fc93c000ffdbd0 /src/buffer.h
parent642eefc6e66d4145507e2f8afaa11acac5623490 (diff)
downloademacs-4abe97d9b4118c1de1f2fd227d250883af5bf3b5.tar.gz
emacs-4abe97d9b4118c1de1f2fd227d250883af5bf3b5.zip
(struct buffer): New field `invisibility_spec'.
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h6
1 files changed, 6 insertions, 0 deletions
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
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. */