]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment changes.
authorRichard M. Stallman <rms@gnu.org>
Wed, 26 Jun 1996 18:01:42 +0000 (18:01 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 26 Jun 1996 18:01:42 +0000 (18:01 +0000)
lisp/vc-hooks.el

index 86e53116583a2083cfa39a25a275ffe75fc8f3b3..8a4184a6badbc085f563fd378029b60a40b7dee3 100644 (file)
@@ -880,15 +880,16 @@ control system name."
                       (and vc-display-status (vc-status file)))))
     ;; If the file is locked by some other user, make
     ;; the buffer read-only.  Like this, even root
-    ;; cannot modify a file without locking it first.
+    ;; cannot modify a file that someone else has locked.
     (and vc-type 
         (equal file (buffer-file-name))
         (vc-locking-user file)
         (not (string= (user-login-name) (vc-locking-user file)))
         (setq buffer-read-only t))
-    ;; If the user is root, and the file is not owner-readable,
-    ;; then pretend that we can't read it
-    ;; even though we can (because root can read anything).
+    ;; If the user is root, and the file is not owner-writable,
+    ;; then pretend that we can't write it
+    ;; even though we can (because root can write anything).
+    ;; This way, even root cannot modify a file that isn't locked.
     (and vc-type
         (equal file (buffer-file-name))
         (not buffer-read-only)