diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-03-21 20:22:41 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-03-21 20:22:41 +0000 |
commit | 243a81f5240b6da4fd0d7a9747fd1c00eb8258b3 (patch) | |
tree | 5026e2422c0206f21c647adb4f926d114502ac52 /lisp | |
parent | 84a150451b13a779f1d2e638e0b49047bc793441 (diff) | |
download | emacs-243a81f5240b6da4fd0d7a9747fd1c00eb8258b3.tar.gz emacs-243a81f5240b6da4fd0d7a9747fd1c00eb8258b3.tar.bz2 emacs-243a81f5240b6da4fd0d7a9747fd1c00eb8258b3.zip |
(vc-update-change-log): Use new -u option for rcs2log.
Diffstat (limited to 'lisp')
-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 |