diff options
author | André Spiegel <spiegel@gnu.org> | 2004-12-17 10:48:53 +0000 |
---|---|---|
committer | André Spiegel <spiegel@gnu.org> | 2004-12-17 10:48:53 +0000 |
commit | 54ebae283f2dfdc5995161245dde09f2166e3bfd (patch) | |
tree | 369518bc8e9d650cfaef1802bc0f2e4e4b0effe6 /lisp/vc.el | |
parent | 0e0803f7585a67aba05c7acf76b80096f9197189 (diff) | |
download | emacs-54ebae283f2dfdc5995161245dde09f2166e3bfd.tar.gz |
(vc-default-update-changelog): Use insert-file-contents, rather than
insert-file.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 63e9be651d9..64de0351922 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -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))))) |