[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
If a buffer is read-only, then you cannot change its contents, although you may change your view of the contents by scrolling and narrowing.
Read-only buffers are used in two kinds of situations:
Here, the purpose is to inform the user that editing the buffer with the aim of saving it in the file may be futile or undesirable. The user who wants to change the buffer text despite this can do so after clearing the read-only flag with C-x C-q.
The special commands of these modes bind buffer-read-only
to
nil
(with let
) or bind inhibit-read-only
to
t
around the places where they themselves change the text.
nil
.
nil
, then read-only buffers and read-only
characters may be modified. Read-only characters in a buffer are those
that have non-nil
read-only
properties (either text
properties or overlay properties). See section 32.19.4 Properties with Special Meanings, for more
information about text properties. See section 38.9 Overlays, for more
information about overlays and their properties.
If inhibit-read-only
is t
, all read-only
character
properties have no effect. If inhibit-read-only
is a list, then
read-only
character properties have no effect if they are members
of the list (comparison is done with eq
).
buffer-read-only
explicitly to the
proper value, t
or nil
.
buffer-read-only
error if the current
buffer is read-only. See section 21.3 Interactive Call, for another way to
signal an error if the current buffer is read-only.
[ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |