README 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # README file for charset mapping files in this directory.
  2. # Copyright (C) 2003-2012 Free Software Foundation, Inc.
  3. # Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
  4. # National Institute of Advanced Industrial Science and Technology (AIST)
  5. # Registration Number H13PRO009
  6. # This file is part of GNU Emacs.
  7. # GNU Emacs is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. # GNU Emacs is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. # You should have received a copy of the GNU General Public License
  16. # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  17. (1) Format of mapping files
  18. Each line contains a code point and the corresponding Unicode
  19. character code separated by a space. Both code points and Unicode
  20. character codes are in hexadecimal preceded by "0x". Comments may be
  21. used, starting with "#". Code ranges may also be used, with
  22. (inclusive) start and end code points separated by "-" followed by the
  23. Unicode of the start of the range
  24. Examples:
  25. 0xA0 0x00A0 # no-break space
  26. 0x8141-0x8143 0x4E04 # map onto a Unicode range
  27. (2) Source of mapping files
  28. All mapping files are generated automatically from data files freely
  29. available on the Internet (e.g. glibc/localedata/charmaps"). See the
  30. file ../../admin/charsets/mapfiles/README for the detail.