diff options
| author | Dave Love | 2002-05-16 19:31:47 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-16 19:31:47 +0000 |
| commit | b1603380b1ba2af7287d263b321579387d876b5f (patch) | |
| tree | f66806b9a2ed1238744dacee311e8c7946944d0b | |
| parent | 61b88eb2744a2dc7a2eb8dde618a2dc93e884756 (diff) | |
| download | emacs-b1603380b1ba2af7287d263b321579387d876b5f.tar.gz emacs-b1603380b1ba2af7287d263b321579387d876b5f.zip | |
*** empty log message ***
| -rw-r--r-- | etc/ChangeLog | 7 | ||||
| -rw-r--r-- | etc/charsets/README | 31 | ||||
| -rw-r--r-- | lisp/ChangeLog | 21 | ||||
| -rw-r--r-- | src/ChangeLog | 8 |
4 files changed, 59 insertions, 8 deletions
diff --git a/etc/ChangeLog b/etc/ChangeLog index 222d02b0384..281ca919f91 100644 --- a/etc/ChangeLog +++ b/etc/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2002-05-16 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * charsets/cp1125.map, charsets/ebcdic-us, charsets/georgian-ps.map: | ||
| 4 | * charsets/koi8-t.map, charsets/koi8-u.map: | ||
| 5 | * charsets/windows-1250.map, charsets/windows-1251.map: | ||
| 6 | * charsets/windows-1252.map: New file. | ||
| 7 | |||
| 1 | 2002-05-07 Kenichi Handa <handa@etl.go.jp> | 8 | 2002-05-07 Kenichi Handa <handa@etl.go.jp> |
| 2 | 9 | ||
| 3 | * charsets/Makefile (MAPS): Add gbk.map and gb18030-bmp.map. | 10 | * charsets/Makefile (MAPS): Add gbk.map and gb18030-bmp.map. |
diff --git a/etc/charsets/README b/etc/charsets/README index 9643d403765..545a4c530cb 100644 --- a/etc/charsets/README +++ b/etc/charsets/README | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | # Copyright (C) 2001, 2002 | 2 | # Copyright (C) 2001, 2002 |
| 3 | # National Institute of Advanced Industrial Science and Technology (AIST) | 3 | # National Institute of Advanced Industrial Science and Technology (AIST) |
| 4 | # Registration Number H13PRO009 | 4 | # Registration Number H13PRO009 |
| 5 | # Copyright (C) 2002 Free Software Foundation, Inc. | ||
| 5 | 6 | ||
| 6 | # This file is part of GNU Emacs. | 7 | # This file is part of GNU Emacs. |
| 7 | 8 | ||
| @@ -25,18 +26,23 @@ | |||
| 25 | 26 | ||
| 26 | Each line contains a code point and the corresponding Unicode | 27 | Each line contains a code point and the corresponding Unicode |
| 27 | character code separated by a space. Both code points and Unicode | 28 | character code separated by a space. Both code points and Unicode |
| 28 | character codes are in hexadecimal preceded by "0x". | 29 | character codes are in hexadecimal preceded by "0x". Comments may be |
| 30 | used, starting with "#". Code ranges may also be used, with endpoints | ||
| 31 | separated by "-", covering the same number of codepoints and | ||
| 32 | unicodes. | ||
| 29 | 33 | ||
| 30 | Example: | 34 | Examples: |
| 31 | 0x80 0x0080 | 35 | 0xA0 0x00A0 # no-break space |
| 36 | |||
| 37 | 0x81308130-0x81308435 0x0080-0x00A3 # map onto a Unicode range | ||
| 32 | 38 | ||
| 33 | 39 | ||
| 34 | (2) Source of mapping files | 40 | (2) Source of mapping files |
| 35 | 41 | ||
| 36 | All mapping files are generated from the data files distributed with | 42 | Most mapping files are generated from the data files distributed with |
| 37 | glibc (under the sub-directory "localedata/charmaps"). This list | 43 | glibc (under the sub-directory "localedata/charmaps"). This list |
| 38 | shows the correspondence of the data files, the mapping files, and | 44 | shows the correspondence of the data file, the mapping file, and which |
| 39 | which charset uses it. | 45 | charset uses it. |
| 40 | 46 | ||
| 41 | DATA-FILE MAP-FILE CHARSET | 47 | DATA-FILE MAP-FILE CHARSET |
| 42 | ========= ======== ======= | 48 | ========= ======== ======= |
| @@ -70,3 +76,16 @@ VISCII viscii-upper.map vietnamese-viscii-upper | |||
| 70 | VISCII vscii.map vscii | 76 | VISCII vscii.map vscii |
| 71 | KOI8-R koi8-r.map koi8-r | 77 | KOI8-R koi8-r.map koi8-r |
| 72 | IBM866 ibm866.map alternativnyj | 78 | IBM866 ibm866.map alternativnyj |
| 79 | CP1251 windows-1251.map windows-1251 | ||
| 80 | CP1250 windows-1250.map windows-1250 | ||
| 81 | GEORGIAN-PS georgian-ps.map georgian-ps | ||
| 82 | KOI8-U koi8-u.map koi8-u | ||
| 83 | KOI8-T koi8-t.map koi8-t | ||
| 84 | EBCDIC-US ebcdic.us.map ebcdic-us | ||
| 85 | EBCDIC-UK ebcdic.uk.map ebcdic-uk | ||
| 86 | CP1250 windows-1250.map windows-1250 | ||
| 87 | CP1251 windows-1251.map windows-1251 | ||
| 88 | CP1252 windows-1252.map windows-1252 | ||
| 89 | |||
| 90 | From ICU: | ||
| 91 | cp1125.map cp1125 | ||
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3083e97c9ad..854d3e336e7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2002-05-16 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * international/mule-diag.el: Doc fixes. | ||
| 4 | (sort-charset-list, charset-multibyte-form-string): Removed. | ||
| 5 | (list-character-sets, list-character-sets-1) | ||
| 6 | (list-character-sets-2): Re-written. | ||
| 7 | (non-iso-charset-alist): Set to nil and made obsolete. | ||
| 8 | (decode-codepage-char): Re-written and made obsolete. | ||
| 9 | (read-charset, describe-character-set): Don't use | ||
| 10 | non-iso-charset-alist. | ||
| 11 | (describe-coding-system): Use keyword properties. | ||
| 12 | |||
| 13 | * international/mule-conf.el (koi8-u, koi8-t, georgian-ps) | ||
| 14 | (windows-1250, windows-1251, windows-1252, cp1125, ebcdic-us) | ||
| 15 | (ebcdic-uk): New charsets. | ||
| 16 | |||
| 17 | * language/cyrillic.el (koi8-u, koi8-t, windows-1251, cp1125): New | ||
| 18 | coding systems. | ||
| 19 | |||
| 20 | * language/european.el (windows-1252): New coding system. | ||
| 21 | |||
| 1 | 2002-05-16 Kenichi Handa <handa@etl.go.jp> | 22 | 2002-05-16 Kenichi Handa <handa@etl.go.jp> |
| 2 | 23 | ||
| 3 | * Makefile.in: By sure to run emacs with LC_ALL=C. | 24 | * Makefile.in: By sure to run emacs with LC_ALL=C. |
diff --git a/src/ChangeLog b/src/ChangeLog index 3226b8dd760..5142e9d25bd 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2002-05-16 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics. | ||
| 4 | |||
| 1 | 2002-05-16 Kenichi Handa <handa@etl.go.jp> | 5 | 2002-05-16 Kenichi Handa <handa@etl.go.jp> |
| 2 | 6 | ||
| 3 | * character.c (string_escape_byte8): Make multibyte string with | 7 | * character.c (string_escape_byte8): Make multibyte string with |
| @@ -21,10 +25,10 @@ | |||
| 21 | (encode_coding_iso_2022): Setup coding->safe_charsets in advance. | 25 | (encode_coding_iso_2022): Setup coding->safe_charsets in advance. |
| 22 | (decode_coding_object): Move point to coding->dst_pos before | 26 | (decode_coding_object): Move point to coding->dst_pos before |
| 23 | calling post-read-conversion function. | 27 | calling post-read-conversion function. |
| 24 | (encode_coding_object): Give correct arguments ot | 28 | (encode_coding_object): Give correct arguments to |
| 25 | pre-write-conversion. Ignore the return value of | 29 | pre-write-conversion. Ignore the return value of |
| 26 | pre-write-conversion function. Pay attention to the case that | 30 | pre-write-conversion function. Pay attention to the case that |
| 27 | pre-write-conversion change the current buffer. If dst_object is | 31 | pre-write-conversion changes the current buffer. If dst_object is |
| 28 | Qt, even if coding->src_bytes is zero, allocate at least one byte | 32 | Qt, even if coding->src_bytes is zero, allocate at least one byte |
| 29 | to coding->destination. | 33 | to coding->destination. |
| 30 | 34 | ||