aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index fa38ca4f0d5..902367e5ac4 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -1138,7 +1138,7 @@ on a buffer attached to the file named in the current Dired buffer line."
1138 (t 1138 (t
1139 (if x (setq x (concat "(" x ")"))) 1139 (if x (setq x (concat "(" x ")")))
1140 (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0) 1140 (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0)
1141 (let ((rep (substring (concat x " ") 0 9))) 1141 (let ((rep (substring (concat x " ") 0 10)))
1142 (replace-match (concat "\\1" rep "\\2") t))) 1142 (replace-match (concat "\\1" rep "\\2") t)))
1143 ))) 1143 )))
1144 1144