diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/buffer.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/buffer.c b/src/buffer.c index 5c65d4d4d19..92ed405b6f7 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -6234,10 +6234,10 @@ Lisp programs may give this variable certain special values: | |||
| 6234 | 6234 | ||
| 6235 | DEFVAR_LISP ("inhibit-read-only", Vinhibit_read_only, | 6235 | DEFVAR_LISP ("inhibit-read-only", Vinhibit_read_only, |
| 6236 | doc: /* Non-nil means disregard read-only status of buffers or characters. | 6236 | doc: /* Non-nil means disregard read-only status of buffers or characters. |
| 6237 | If the value is t, disregard `buffer-read-only' and all `read-only' | 6237 | A non-nil value that is a list means disregard `buffer-read-only' status, |
| 6238 | text properties. If the value is a list, disregard `buffer-read-only' | 6238 | and disregard a `read-only' text property if the property value is a |
| 6239 | and disregard a `read-only' text property if the property value | 6239 | member of the list. Any other non-nil value means disregard `buffer-read-only' |
| 6240 | is a member of the list. */); | 6240 | and all `read-only' text properties. */); |
| 6241 | Vinhibit_read_only = Qnil; | 6241 | Vinhibit_read_only = Qnil; |
| 6242 | 6242 | ||
| 6243 | DEFVAR_PER_BUFFER ("cursor-type", &BVAR (current_buffer, cursor_type), Qnil, | 6243 | DEFVAR_PER_BUFFER ("cursor-type", &BVAR (current_buffer, cursor_type), Qnil, |