Skip to content

Update change.{txt,jax} #1543

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions doc/change.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*change.txt* For Vim バージョン 9.1. Last change: 2024 May 05
*change.txt* For Vim バージョン 9.1. Last change: 2024 May 18


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -602,9 +602,10 @@ Vimがフィルタコマンドを実行するときに使うシェルを指定
される。Unix ではこのファイルはプライベートな (自分だけがアクセスできる) ディ
レクトリに置かれる。セキュリティ上の問題 (symlink attack や他の人があなたのファ
イルを読むなど) を避けるためである。Vim が終了するとき、そのディレクトリと中に
あるファイルは自動的に削除される。Vim に setuid ビットが立っているとこれが問題
を引き起こすことがある。一時ファイルは setuid されたユーザーが所有するのに対
し、フィルタコマンドは元のユーザーとして動作するためである。
あるファイルは自動的に削除される (Unix のみ。他のシステムでは自分で片づける必
要がある)。Vim に setuid ビットが立っているとこれが問題を引き起こすことがある。
一時ファイルは setuid されたユーザーが所有するのに対し、フィルタコマンドは元の
ユーザーとして動作するためである。
一時ファイルのディレクトリはこれらから機能する最初のディレクトリに作成される:
Unix: $TMPDIR, /tmp, current-dir, $HOME.
Windows: $TMP, $TEMP, c:\TMP, c:\TEMP
Expand Down
5 changes: 3 additions & 2 deletions en/change.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*change.txt* For Vim version 9.1. Last change: 2024 May 05
*change.txt* For Vim version 9.1. Last change: 2024 May 18


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -623,7 +623,8 @@ Vim uses temporary files for filtering, generating diffs and also for
tempname(). For Unix, the file will be in a private directory (only
accessible by the current user) to avoid security problems (e.g., a symlink
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
all files in it are deleted (only on Unix, on other systems you will have to
clean up yourself). 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 of these directories
Expand Down