Mercurial > emacs
changeset 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 | 3ef9f196e634 |
children | 4d6c32d4f782 |
files | lisp/vc.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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))) )))