diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-16 17:47:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-16 17:47:27 +0000 |
commit | 61d5c4920757c13820a81bb45f7537666cb7c198 (patch) | |
tree | 5660ef81c7ad9c7177800dfde17dd52fa3f14203 /lisp/ediff-init.el | |
parent | 406757ff5b37049234a2c856d483747f1e063905 (diff) | |
download | emacs-61d5c4920757c13820a81bb45f7537666cb7c198.tar.gz |
(ediff-temp-file-prefix): Use temporary-file-directory.
Diffstat (limited to 'lisp/ediff-init.el')
-rw-r--r-- | lisp/ediff-init.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/ediff-init.el b/lisp/ediff-init.el index f56a1922588..b514a534d15 100644 --- a/lisp/ediff-init.el +++ b/lisp/ediff-init.el @@ -1204,11 +1204,9 @@ Instead, C-h would jump to previous difference." :group 'ediff) (defcustom ediff-temp-file-prefix - ;; The following is to make sure we get something to which we can - ;; add directory levels under VMS. - (file-name-as-directory system-tmp-directory) + (file-name-as-directory temporary-file-directory) "*Prefix to put on Ediff temporary file names. -Do not start with `~/' or `~user-name/'." +Do not start with `~/' or `~USERNAME/'." :type 'string :group 'ediff) |