]> git.eshelyaron.com Git - emacs.git/commitdiff
(view-read-only): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Thu, 24 Apr 2003 01:58:49 +0000 (01:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 24 Apr 2003 01:58:49 +0000 (01:58 +0000)
lisp/ChangeLog
lisp/files.el

index 94e15aa25b8a5aa858b17185b2bfd6614e1a153a..af6a7cc1a945a9bb3f2c20511c76889dbd37e7e1 100644 (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 #.
 
index 6e1a5b4c799ba973fdf53f3d765422b27c69fff8..c18cc2e20acb4d0e65a4d45cfd521056ccf6c41a 100644 (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)