1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-30 19:53:09 +00:00

(view-read-only): Doc fix.

This commit is contained in:
Richard M. Stallman 2003-04-24 01:58:49 +00:00
parent b986346637
commit 4c91443d07
2 changed files with 17 additions and 1 deletions

View File

@ -1,5 +1,17 @@
2003-04-23 Richard M. Stallman <rms@gnu.org>
* files.el (view-read-only): Doc fix.
* simple.el (back-to-indentation): Call backward-prefix-chars.
* help-mode.el (help-make-xrefs): Clean up the loop that scans
over a keymap inserted by \\{...}; it now stops at end of buffer.
* filesets.el: Don't call filesets-init.
* emacs-lisp/bytecomp.el (byte-compile-defun): Generate and
compile a defalias form, unless byte-compile-compatibility.
* progmodes/scheme.el (scheme-mode-syntax-table):
Use prefix syntax for ', `, comma, @ and #.

View File

@ -443,7 +443,11 @@ and ignores this variable."
(defalias 'file-locked-p 'ignore))
(defcustom view-read-only nil
"*Non-nil means buffers visiting files read-only, do it in view mode."
"*Non-nil means buffers visiting files read-only do so in view mode.
In fact, this means that all read-only buffers normally have
View mode enabled, including buffers that are read-only because
you visit a file you cannot alter, and buffers you make read-only
using \\[toggle-read-only]."
:type 'boolean
:group 'view)