aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-03-29 18:29:46 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-03-30 02:55:00 +0200
commit1f478cebeb929332e90c1b50de4b8a4f311a0df2 (patch)
tree6cdbc962214a78e20d2e51bb656548bbc077b74e /runtime
parent6964b67c00f9aa029791137f44f30ed4aef20ef4 (diff)
downloadrneovim-1f478cebeb929332e90c1b50de4b8a4f311a0df2.tar.gz
rneovim-1f478cebeb929332e90c1b50de4b8a4f311a0df2.tar.bz2
rneovim-1f478cebeb929332e90c1b50de4b8a4f311a0df2.zip
win: tempname(): Use $TMPDIR if defined.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/doc/change.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index c8576d83e8..e0974b103c 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -601,8 +601,8 @@ all files in it are deleted. When Vim has the setuid bit set this may cause
problems, the temp file is owned by the setuid user but the filter command
probably runs as the original user.
Directory for temporary files is created in the first suitable directory of:
-For Unix: $TMPDIR, /tmp, current-dir, $HOME.
-For MS-Windows: $TMP, $TEMP, $USERPROFILE, current-dir.
+ Unix: $TMPDIR, /tmp, current-dir, $HOME.
+ Windows: $TMPDIR, $TMP, $TEMP, $USERPROFILE, current-dir.