aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii1999-09-02 12:50:28 +0000
committerEli Zaretskii1999-09-02 12:50:28 +0000
commit57c298c42688a59dbee89ef68cc285f7c0503330 (patch)
tree30aeafbd7359aaf3364b5d81a53466d051e999f5
parent77f907112826ea2489e860596f0fbca9067f18da (diff)
downloademacs-57c298c42688a59dbee89ef68cc285f7c0503330.tar.gz
emacs-57c298c42688a59dbee89ef68cc285f7c0503330.zip
(vc-update-change-log): Use small-temporary-file-directory when non-nil.
-rw-r--r--lisp/vc.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 3223aac601b..5d5bccbd752 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -5,7 +5,7 @@
5;; Author: Eric S. Raymond <esr@snark.thyrsus.com> 5;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
6;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de> 6;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
7 7
8;; $Id: vc.el,v 1.250 1999/06/30 07:16:14 spiegel Exp schwab $ 8;; $Id: vc.el,v 1.251 1999/08/27 07:59:22 schwab Exp eliz $
9 9
10;; This file is part of GNU Emacs. 10;; This file is part of GNU Emacs.
11 11
@@ -2262,7 +2262,9 @@ default directory."
2262 (changelog (find-change-log)) 2262 (changelog (find-change-log))
2263 ;; Presumably not portable to non-Unixy systems, along with rcs2log: 2263 ;; Presumably not portable to non-Unixy systems, along with rcs2log:
2264 (tempfile (make-temp-name 2264 (tempfile (make-temp-name
2265 (expand-file-name "vc" temporary-file-directory))) 2265 (expand-file-name "vc"
2266 (or small-temporary-file-directory
2267 temporary-file-directory))))
2266 (full-name (or add-log-full-name 2268 (full-name (or add-log-full-name
2267 (user-full-name) 2269 (user-full-name)
2268 (user-login-name) 2270 (user-login-name)