diff lisp/vc.el @ 12819:e6713915dd94

(vc-dired-reformat-line): Display eight character user names correctly.
author Richard M. Stallman <rms@gnu.org>
date Thu, 10 Aug 1995 19:46:16 +0000
parents 826ee893ebdf
children 857663042672
line wrap: on
line diff
--- a/lisp/vc.el	Thu Aug 10 18:55:44 1995 +0000
+++ b/lisp/vc.el	Thu Aug 10 19:46:16 1995 +0000
@@ -1138,7 +1138,7 @@
    (t
     (if x (setq x (concat "(" x ")")))
     (if (re-search-forward "\\([0-9]+ \\).................\\( .*\\)" nil 0)
-       (let ((rep (substring (concat x "                 ") 0 9)))
+       (let ((rep (substring (concat x "                 ") 0 10)))
          (replace-match (concat "\\1" rep "\\2") t)))
     )))