This commit is contained in:
Nobuyoshi Nakada 2019-11-05 08:07:59 +09:00
Родитель 74bb8fb348
Коммит 7c3bc0aa13
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
1 изменённых файлов: 2 добавлений и 1 удалений

3
hash.c
Просмотреть файл

@ -6220,6 +6220,7 @@ Init_Hash(void)
* - When you get the value for a name in ENV, the value is retrieved from among the current environment variables.
* - When you create or set a name-value pair in ENV, the name and value are immediately set in the environment variables.
* - When you delete a name-value pair in ENV, it is immediately deleted from the environment variables.
*
* === Names and Values
* Generally speaking, each name or value is a String.
*
@ -6231,7 +6232,7 @@ Init_Hash(void)
* - Be the empty string.
* - Contain character <code>=</code> or the NUL character (<code>"\0"</code>).
* - Have an ASCII-incompatible encoding (e.g., UTF-16LE, ISO-2022-JP).
*
* === About Ordering
* ENV presents its content in the order found
* in the operating system's environment variables.