1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 12:21:25 -08:00

(vc-default-update-changelog): Use insert-file-contents, rather than

insert-file.
This commit is contained in:
André Spiegel 2004-12-17 10:48:53 +00:00
parent 0e0803f758
commit 54ebae283f

View file

@ -2836,7 +2836,7 @@ Uses `rcs2log' which only works for RCS and CVS."
(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)))))