Skip to content

Commit 5e873ba

Browse files
authored
Merge pull request #2253 from h-east/update-develop
Update develop.{txt,jax}
2 parents a259f1d + 0f848eb commit 5e873ba

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

doc/develop.jax

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*develop.txt* For Vim バージョン 9.1. Last change: 2025 Aug 10
1+
*develop.txt* For Vim バージョン 9.1. Last change: 2025 Aug 11
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -333,10 +333,16 @@ VAX V7.3 では Compaq C V6.4-005 を使用してビルドする必要がある
333333

334334
`C95` (ISO/IEC 9899:1990/AMD1:1995)
335335

336-
さらに、以下の 2 つの `C99` 機能が明示的に許可される:
336+
さらに、以下の `C99` の機能が明示的に許可される:
337337
- |style-comments| で要求される `//` コメント。
338-
- `_Bool` 型。
339-
- 論理行には最大 4095 文字を含めることができる。
338+
- ブロック内に宣言とステートメントが混在。
339+
- 可変長マクロ `(..., __VA_ARGS__)`。
340+
- `enum` リストの末尾のコンマ。
341+
- `_Bool` 型 (`bool``true``false` 用)。
342+
- `__func__` 定義済み識別子。
343+
- `inline` 関数 (移植性のために `static inline` を使用)。
344+
- 複合リテラル `(type){ 初期化子リスト }`。
345+
- 論理ソース行は最大 4095 文字。
340346

341347
プラットフォーム固有のコードでは、そのプラットフォームでサポートされている新し
342348
いコンパイラ機能が使用される場合がある。

en/develop.txt

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*develop.txt* For Vim version 9.1. Last change: 2025 Aug 10
1+
*develop.txt* For Vim version 9.1. Last change: 2025 Aug 11
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -340,8 +340,14 @@ Therefore, the latest ISO C standard we follow is:
340340

341341
In addition, the following `C99` features are explicitly allowed:
342342
- `//` comments, as required by |style-comments|;
343-
- the `_Bool` type.
344-
- logical lines may contain up to 4095 characters;
343+
- Mixed declarations and statements in a block;
344+
- Variadic macros `(..., __VA_ARGS__)`;
345+
- Trailing comma in `enum` lists;
346+
- `_Bool` type (for `bool`, `true` and `false`);
347+
- `__func__` predefined identifier;
348+
- `inline` functions (use `static inline` for portability);
349+
- Compound literals `(type){ initializer-list }`;
350+
- Logical source lines up to 4095 characters.
345351

346352
Platform-specific code may use any newer compiler features supported on that
347353
platform.

0 commit comments

Comments
 (0)