diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-30 17:39:01 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-07-30 17:39:01 +0000 |
commit | 100edb42a4ea41556832385f89464c1e949bf527 (patch) | |
tree | 42ab628028b69072928690a2e6aa0ffd100cadab /lisp/vc.el | |
parent | b956d64f8087f9ef4a72718d918f87fe59609694 (diff) | |
download | emacs-100edb42a4ea41556832385f89464c1e949bf527.tar.gz |
(vc-dired-hook): Use inhibit-read-only.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 6504a7ea644..5030fb64471 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -2289,7 +2289,7 @@ This code, like dired, assumes UNIX -l format." "Reformat the listing according to version control. Called by dired after any portion of a vc-dired buffer has been read in." (message "Getting version information... ") - (let (subdir filename (buffer-read-only nil)) + (let (subdir filename (inhibit-read-only t)) (goto-char (point-min)) (while (not (eobp)) (cond |