diff options
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 5b9de8bb486..920611de76c 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1434,10 +1434,12 @@ From a program, any arguments are passed to the `rcs2log' script." (message "Computing change log entries... %s" (if (or (null args) (eq 0 (apply 'call-process "rcs2log" nil t nil - "-n" - (user-login-name) - (user-full-name) - user-mail-address + "-u" + (concat (user-login-name) + "\t" + (user-full-name) + "\t" + user-mail-address) (mapcar (function (lambda (f) (file-relative-name |