Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation/filesystems/vfat.txt: fix a remark that implies UCS2

All non-historic operating systems support the full range of Unicode here,
thus you can make filenames for example in Gothic (πŒΌπŒ΄π‰π…), the other Gothic
(π“‚β„―β„΄π“Œ) or the third Gothic (π—†π–Ύπ—ˆπ—), or declare something as πŸ’©.

Characters above U+FFFF are encoded on four bytes.

Signed-off-by: Adam Borowski <kilobyte@angband.pl>
Acked-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Adam Borowski and committed by
Jonathan Corbet
651a9ee4 227d1a61

+1 -1
+1 -1
Documentation/filesystems/vfat.txt
··· 344 344 characters in the final slot are set to Unicode 0xFFFF. 345 345 346 346 Finally, note that the extended name is stored in Unicode. Each Unicode 347 - character takes two bytes. 347 + character takes either two or four bytes, UTF-16LE encoded.