diff options
author | Karl Heuer <kwzh@gnu.org> | 1998-02-27 21:55:01 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1998-02-27 21:55:01 +0000 |
commit | f00008bc57ee23154ca8d3cd9543810eaf544a82 (patch) | |
tree | d1c80a6e93235e4aca46853b3e5fb02f0dabc7b6 /src | |
parent | f2e6033d73ceebf4d889c9ba80529529bb2c07da (diff) | |
download | emacs-f00008bc57ee23154ca8d3cd9543810eaf544a82.tar.gz |
Fix comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/buffer.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/buffer.h b/src/buffer.h index 0b775765fa9..a26e6325aac 100644 --- a/src/buffer.h +++ b/src/buffer.h @@ -694,9 +694,12 @@ extern struct buffer buffer_local_symbols; buffer-local slots. If a slot contains Qnil, then the corresponding buffer slot may contain a value of any type. If a slot contains an integer, then prospective values' tags must be - equal to that integer. When a tag does not match, the function - buffer_slot_type_mismatch will signal an error. The value Qnil may - always be safely stored in any slot. */ + equal to that integer (except nil is always allowed). + When a tag does not match, the function + buffer_slot_type_mismatch will signal an error. + + If a slot here contains -1, the corresponding variable is read-only. */ + extern struct buffer buffer_local_types; extern void reset_buffer P_ ((struct buffer *)); |