diff --git a/catchup-7.4.1194.md b/catchup-7.4.1194.md index 37c26ee69..f0614949d 100644 --- a/catchup-7.4.1194.md +++ b/catchup-7.4.1194.md @@ -22,7 +22,6 @@ doc/autocmd.jax doc/change.jax doc/develop.jax - doc/editing.jax doc/fold.jax doc/hangulin.jax doc/if_lua.jax # 100行超えたけど、内容的に大したことない @@ -56,6 +55,7 @@ ### 完訳! doc/cmdline.jax + doc/editing.jax doc/filetype.jax doc/help.jax doc/index.jax diff --git a/doc/editing.jax b/doc/editing.jax index 3d079ab32..2d3488a69 100644 --- a/doc/editing.jax +++ b/doc/editing.jax @@ -1439,14 +1439,15 @@ Note: メモリ内のテキストは暗号化されない。ユーザーがテ アンドゥファイルが保存されるとき、同じキーとメソッドがアンドゥファイル内のテキ ストに適用される。|persistent-undo|。 -To test for blowfish support you can use these conditions: > +"blowfish" をサポートしているかどうかテストするには下記の条件を使う: > has('crypt-blowfish') has('crypt-blowfish2') -This works since Vim 7.4.1099 while blowfish support was added earlier. -Thus the condition failing doesn't mean blowfish is not supported. You can -test for blowfish with: > +"blowfish" のサポート自体は Vim 7.4.1099 以前からあったものの、上記の条件が利用 +できるのは Vim 7.4.1099 からである。 +よって上記の条件が偽になったとしても "blowfish" をサポートしていることがある。 +"blowfish" を使えるかどうかは次の条件でテストできる: > v:version >= 703 -And for blowfish2 with: > +また "blowfish2" については次の条件でテストできる: > v:version > 704 || (v:version == 704 && has('patch401')) < *E817* *E818* *E819* *E820*