From: André Spiegel Date: Tue, 16 Jul 2002 17:47:33 +0000 (+0000) Subject: (vc-next-action-on-file): Ignore buffer-read-only while comparing to X-Git-Tag: ttn-vms-21-2-B4~14064 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=165e43b6c72f31114a728250a2463239d23636b6;p=emacs.git (vc-next-action-on-file): Ignore buffer-read-only while comparing to file on disk. Fix the case when claiming the lock on a file that has unlocked changes. (vc-log-mode): Don't mention vc-toggle-read-only in the doc string. --- diff --git a/lisp/vc.el b/lisp/vc.el index 648deb72b52..3692eb3bb7c 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -6,7 +6,7 @@ ;; Maintainer: Andre Spiegel ;; Keywords: tools -;; $Id: vc.el,v 1.330 2002/03/05 13:14:11 spiegel Exp $ +;; $Id: vc.el,v 1.331 2002/03/06 13:51:28 gerd Exp $ ;; This file is part of GNU Emacs. @@ -1107,9 +1107,12 @@ If VERBOSE is non-nil, query the user rather than using default parameters." ;; Check relation of buffer and file, and make sure ;; user knows what he's doing. First, finding the file ;; will check whether the file on disk is newer. - (if vc-dired-mode - (find-file-other-window file) - (set-buffer (find-file-noselect file))) + (set-buffer visited) + ;; ignore buffer-read-only during this test + (let ((buffer-read-only (not (file-writable-p file)))) + (if vc-dired-mode + (find-file-other-window file) + (find-file-noselect file))) (if (not (verify-visited-file-modtime (current-buffer))) (if (yes-or-no-p "Replace file on disk with buffer contents? ") (write-file (buffer-file-name)) @@ -1224,9 +1227,11 @@ If VERBOSE is non-nil, query the user rather than using default parameters." (yes-or-no-p (concat "File has unlocked changes. " "Claim lock retaining changes? "))) (progn (vc-call steal-lock file) + (clear-visited-file-modtime) ;; Must clear any headers here because they wouldn't ;; show that the file is locked now. (vc-clear-headers file) + (write-file (buffer-file-name)) (vc-mode-line file)) (if (not (yes-or-no-p "Revert to checked-in version, instead? ")) @@ -3249,7 +3254,6 @@ This function is obsolete, and has been replaced by These bindings are added to the global keymap when you enter this mode: \\[vc-next-action] perform next logical version-control operation on current file \\[vc-register] register current file -\\[vc-toggle-read-only] like next-action, but won't register files \\[vc-insert-headers] insert version-control headers in current file \\[vc-print-log] display change history of current file \\[vc-revert-buffer] revert buffer to latest version