aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKenichi Handa2002-10-15 01:20:31 +0000
committerKenichi Handa2002-10-15 01:20:31 +0000
commit04ceba19c5f5886c499e9c1cace0d3d6b67baa46 (patch)
tree4cc447ccc78b1004ccbab46c5cfecd541787cb82
parent1a9db5562288ed1bb2a9cba866052295599ebdd7 (diff)
downloademacs-04ceba19c5f5886c499e9c1cace0d3d6b67baa46.tar.gz
emacs-04ceba19c5f5886c499e9c1cace0d3d6b67baa46.zip
*** empty log message ***
-rw-r--r--README.unicode6
-rw-r--r--lisp/ChangeLog5
-rw-r--r--src/ChangeLog25
3 files changed, 36 insertions, 0 deletions
diff --git a/README.unicode b/README.unicode
index 86f3e33ec8d..3f04f510bc4 100644
--- a/README.unicode
+++ b/README.unicode
@@ -20,6 +20,10 @@ existing support and the extra stuff at
20 (multibyte-string-p (concat [?£])) => nil 20 (multibyte-string-p (concat [?£])) => nil
21 (text-char-description ?£) => "M-#" 21 (text-char-description ?£) => "M-#"
22 22
23 These examples are all fixed by the change of 2002-10-14, but
24 there still exist questionalble SINGLE_BYTE_CHAR_P in the
25 code.
26
23 * Rationalize character syntax and its relationship to the Unicode 27 * Rationalize character syntax and its relationship to the Unicode
24 database. (Applies mainly to symbol an punctuation syntax.) 28 database. (Applies mainly to symbol an punctuation syntax.)
25 29
@@ -62,6 +66,8 @@ existing support and the extra stuff at
62 66
63 * Translation tables for {en,de}code currently aren't supported. 67 * Translation tables for {en,de}code currently aren't supported.
64 68
69 This should be fixed by the changes of 2002-10-14.
70
65 * Defining CCL coding systems currently doesn't work. 71 * Defining CCL coding systems currently doesn't work.
66 72
67 * iso-2022 charsets get unified on i/o. 73 * iso-2022 charsets get unified on i/o.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4d271b0d7e3..80af4e6341d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12002-10-14 Kenichi Handa <handa@etl.go.jp>
2
3 * international/mule.el (define-coding-system): Fix typo;
4 "docode" -> "decode".
5
12002-10-14 Dave Love <fx@gnu.org> 62002-10-14 Dave Love <fx@gnu.org>
2 7
3 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add 8 * emacs-lisp/byte-opt.el (side-effect-free-fns): Add
diff --git a/src/ChangeLog b/src/ChangeLog
index f861101c289..eedc240d0fa 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,28 @@
12002-10-14 Kenichi Handa <handa@etl.go.jp>
2
3 * coding.c (decode_coding): Fix args to translate_chars. Pay
4 attention to Vstandard_translation_table_for_decode.
5 (encode_coding): Fix args to translate_chars. Pay attention to
6 Vstandard_translation_table_for_encode.
7
8 * data.c (Faset): Check NEWELT by ASCII_CHAR_P, not by
9 SINGLE_BYTE_CHAR_P.
10
11 * editfns.c (general_insert_function): Check VAL by ASCII_CHAR_P,
12 not by SINGLE_BYTE_CHAR_P.
13
14 * fns.c (concat): Check CH by ASCII_CHAR_P, not by
15 SINGLE_BYTE_CHAR_P.
16
17 * insdel.c (copy_text): Check C by ASCII_CHAR_P, not by
18 SINGLE_BYTE_CHAR_P.
19
20 * keymap.c (Ftext_char_description): Check C by ASCII_CHAR_P, not
21 by SINGLE_BYTE_CHAR_P.
22
23 * search.c (Freplace_match): Check C by ASCII_CHAR_P, not by
24 SINGLE_BYTE_CHAR_P.
25
12002-10-14 Dave Love <fx@gnu.org> 262002-10-14 Dave Love <fx@gnu.org>
2 27
3 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix. 28 * fns.c (Fstring_as_multibyte, Fstring_to_multibyte): Doc fix.