Skip to content

Commit e79f7f7

Browse files
committed
translate a part of document about blowfish #164
1 parent f8de019 commit e79f7f7

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

catchup-7.4.1194.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
doc/autocmd.jax
2323
doc/change.jax
2424
doc/develop.jax
25-
doc/editing.jax
2625
doc/fold.jax
2726
doc/hangulin.jax
2827
doc/if_lua.jax # 100行超えたけど、内容的に大したことない
@@ -56,6 +55,7 @@
5655
### 完訳!
5756

5857
doc/cmdline.jax
58+
doc/editing.jax
5959
doc/filetype.jax
6060
doc/help.jax
6161
doc/index.jax

doc/editing.jax

+6-5
Original file line numberDiff line numberDiff line change
@@ -1439,14 +1439,15 @@ Note: メモリ内のテキストは暗号化されない。ユーザーがテ
14391439
アンドゥファイルが保存されるとき、同じキーとメソッドがアンドゥファイル内のテキ
14401440
ストに適用される。|persistent-undo|
14411441

1442-
To test for blowfish support you can use these conditions: >
1442+
"blowfish" をサポートしているかどうかテストするには下記の条件を使う: >
14431443
has('crypt-blowfish')
14441444
has('crypt-blowfish2')
1445-
This works since Vim 7.4.1099 while blowfish support was added earlier.
1446-
Thus the condition failing doesn't mean blowfish is not supported. You can
1447-
test for blowfish with: >
1445+
"blowfish" のサポート自体は Vim 7.4.1099 以前からあったものの、上記の条件が利用
1446+
できるのは Vim 7.4.1099 からである。
1447+
よって上記の条件が偽になったとしても "blowfish" をサポートしていることがある。
1448+
"blowfish" を使えるかどうかは次の条件でテストできる: >
14481449
v:version >= 703
1449-
And for blowfish2 with: >
1450+
また "blowfish2" については次の条件でテストできる: >
14501451
v:version > 704 || (v:version == 704 && has('patch401'))
14511452
<
14521453
*E817* *E818* *E819* *E820*

0 commit comments

Comments
 (0)