Update documentation
@@ -10,6 +10,8 @@ | ||
10 | 10 | ---------------------------------------------------------------------- |
11 | 11 | Yash 2.53 (????-??-??) |
12 | 12 | |
13 | + = The shell now deterministically rejects arithmetic expansions | |
14 | + that result in undefined behavior. | |
13 | 15 | * A non-interactive yash now exits on an assignment error in a for |
14 | 16 | loop. |
15 | 17 | * Fixed a bug where command substitutions contained in the regular |
@@ -466,6 +466,8 @@ | ||
466 | 466 | echo $((foo + 0)) # error |
467 | 467 | ---- |
468 | 468 | |
469 | +It is an expansion error if the result of an expression is not defined in C. | |
470 | + | |
469 | 471 | [[brace]] |
470 | 472 | == Brace expansion |
471 | 473 |
@@ -276,6 +276,8 @@ | ||
276 | 276 | echo $((foo + 0)) # エラー |
277 | 277 | ---- |
278 | 278 | |
279 | +C 言語で結果が定義されていない数式は展開エラーになります。 | |
280 | + | |
279 | 281 | [[brace]] |
280 | 282 | == ブレース展開 |
281 | 283 |