Mercurial > emacs
changeset 59011:816dc38b1981
(vc-default-update-changelog): Use insert-file-contents, rather than
insert-file.
author | André Spiegel <spiegel@gnu.org> |
---|---|
date | Fri, 17 Dec 2004 10:48:53 +0000 |
parents | 827db9f3f4a2 |
children | 4757a09db597 |
files | lisp/vc.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/vc.el Fri Dec 17 05:38:12 2004 +0000 +++ b/lisp/vc.el Fri Dec 17 10:48:53 2004 +0000 @@ -2836,7 +2836,7 @@ (pop-to-buffer (set-buffer (get-buffer-create "*vc*"))) (erase-buffer) - (insert-file tempfile) + (insert-file-contents tempfile) "failed")) (setq default-directory (file-name-directory changelog)) (delete-file tempfile)))))