summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-05-16 17:53:32 +0000
committerRichard M. Stallman <rms@gnu.org>1998-05-16 17:53:32 +0000
commit2434c30ec8b5a72ec03455b0db95ddb10b51f7b6 (patch)
tree09e033029814058d46e58f96f1cc0858e563dabd
parent7f2d89d2b62ed45a5636e879793b32f8be277c87 (diff)
downloademacs-2434c30ec8b5a72ec03455b0db95ddb10b51f7b6.tar.gz
(vc-update-change-log): Use temporary-file-directory.
Use expand-file-name on it.
-rw-r--r--lisp/vc.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index f54be6433b6..51d3748943b 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
-;; $Id: vc.el,v 1.225 1998/05/02 16:41:08 spiegel Exp rms $
+;; $Id: vc.el,v 1.226 1998/05/16 03:44:16 rms Exp rms $
;; This file is part of GNU Emacs.
@@ -2120,8 +2120,7 @@ default directory."
(changelog (find-change-log))
;; Presumably not portable to non-Unixy systems, along with rcs2log:
(tempfile (make-temp-name
- (concat (file-name-as-directory system-tmp-directory)
- "vc")))
+ (expand-file-name "vc" temporary-file-directory)))
(full-name (or add-log-full-name
(user-full-name)
(user-login-name)