aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc/vc.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r--lisp/vc/vc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index af129f3da5f..a976c498c13 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -5471,7 +5471,8 @@ MOVE non-nil means to move instead of copy."
5471 (with-temp-buffer 5471 (with-temp-buffer
5472 (cond* (patch-string 5472 (cond* (patch-string
5473 (diff-mode) 5473 (diff-mode)
5474 (insert patch-string)) 5474 (let ((inhibit-read-only t)) ; `diff-default-read-only'.
5475 (insert patch-string)))
5475 ;; Some backends don't tolerate unregistered files 5476 ;; Some backends don't tolerate unregistered files
5476 ;; appearing in the fileset for a diff operation. 5477 ;; appearing in the fileset for a diff operation.
5477 ((bind* (diff-fileset 5478 ((bind* (diff-fileset