summaryrefslogtreecommitdiffstats
path: root/runtime/doc/change.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-04-18 15:36:40 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-18 15:36:40 +0100
commit75ab590f8504a8912ca0b8c58f6b897bb7a34f07 (patch)
tree075bd9c71cdc8ed677ae82f9594668cf3a220109 /runtime/doc/change.txt
parenta929c922b1cb7c84ad1b5d1d0fc9a4f7c68ab8e0 (diff)
Update runtime files
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r--runtime/doc/change.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt
index 04bd238d11..fdae0da959 100644
--- a/runtime/doc/change.txt
+++ b/runtime/doc/change.txt
@@ -614,9 +614,10 @@ attack or other people reading your file). When Vim exits the directory and
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.
-On MS-Windows the first of these directories that works is used: $TMP,
-$TEMP, c:\TMP, c:\TEMP.
-For Unix the list of directories is: $TMPDIR, /tmp, current-dir, $HOME.
+Directory for temporary files is created in the first of these directories
+that works:
+ Unix: $TMPDIR, /tmp, current-dir, $HOME.
+ Windows: $TMP, $TEMP, c:\TMP, c:\TEMP
For MS-Windows the GetTempFileName() system function is used.
For other systems the tmpnam() library function is used.