aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2002-05-16 19:31:47 +0000
committerDave Love2002-05-16 19:31:47 +0000
commitb1603380b1ba2af7287d263b321579387d876b5f (patch)
treef66806b9a2ed1238744dacee311e8c7946944d0b
parent61b88eb2744a2dc7a2eb8dde618a2dc93e884756 (diff)
downloademacs-b1603380b1ba2af7287d263b321579387d876b5f.tar.gz
emacs-b1603380b1ba2af7287d263b321579387d876b5f.zip
*** empty log message ***
-rw-r--r--etc/ChangeLog7
-rw-r--r--etc/charsets/README31
-rw-r--r--lisp/ChangeLog21
-rw-r--r--src/ChangeLog8
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 @@
12002-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
12002-05-07 Kenichi Handa <handa@etl.go.jp> 82002-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
26Each line contains a code point and the corresponding Unicode 27Each line contains a code point and the corresponding Unicode
27character code separated by a space. Both code points and Unicode 28character code separated by a space. Both code points and Unicode
28character codes are in hexadecimal preceded by "0x". 29character codes are in hexadecimal preceded by "0x". Comments may be
30used, starting with "#". Code ranges may also be used, with endpoints
31separated by "-", covering the same number of codepoints and
32unicodes.
29 33
30Example: 34Examples:
310x80 0x0080 350xA0 0x00A0 # no-break space
36
370x81308130-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
36All mapping files are generated from the data files distributed with 42Most mapping files are generated from the data files distributed with
37glibc (under the sub-directory "localedata/charmaps"). This list 43glibc (under the sub-directory "localedata/charmaps"). This list
38shows the correspondence of the data files, the mapping files, and 44shows the correspondence of the data file, the mapping file, and which
39which charset uses it. 45charset uses it.
40 46
41DATA-FILE MAP-FILE CHARSET 47DATA-FILE MAP-FILE CHARSET
42========= ======== ======= 48========= ======== =======
@@ -70,3 +76,16 @@ VISCII viscii-upper.map vietnamese-viscii-upper
70VISCII vscii.map vscii 76VISCII vscii.map vscii
71KOI8-R koi8-r.map koi8-r 77KOI8-R koi8-r.map koi8-r
72IBM866 ibm866.map alternativnyj 78IBM866 ibm866.map alternativnyj
79CP1251 windows-1251.map windows-1251
80CP1250 windows-1250.map windows-1250
81GEORGIAN-PS georgian-ps.map georgian-ps
82KOI8-U koi8-u.map koi8-u
83KOI8-T koi8-t.map koi8-t
84EBCDIC-US ebcdic.us.map ebcdic-us
85EBCDIC-UK ebcdic.uk.map ebcdic-uk
86CP1250 windows-1250.map windows-1250
87CP1251 windows-1251.map windows-1251
88CP1252 windows-1252.map windows-1252
89
90From 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 @@
12002-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
12002-05-16 Kenichi Handa <handa@etl.go.jp> 222002-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 @@
12002-05-16 Dave Love <fx@gnu.org>
2
3 * s/osf5-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Remove -nointrinsics.
4
12002-05-16 Kenichi Handa <handa@etl.go.jp> 52002-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