]> git.eshelyaron.com Git - emacs.git/commitdiff
*** empty log message ***
authorKenichi Handa <handa@m17n.org>
Tue, 20 Aug 2002 11:25:27 +0000 (11:25 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 20 Aug 2002 11:25:27 +0000 (11:25 +0000)
lisp/ChangeLog
src/ChangeLog

index ab218367279dfa64a7fa60dd53de69b5a1796122..b7d7e7ab927e7efcd47f4cf0ccc1a2586cb78d7d 100644 (file)
@@ -1,7 +1,7 @@
 2002-08-20  Kenichi Handa  <handa@etl.go.jp>
 
        * international/characters.el: Remove duplicated case setting for
-       Cyrillic and Greek letters.
+       Cyrillic and Greek letters.   Don't setup printable-chars here.
 
        * case-table.el (describe-buffer-case-table): Handle the case
        that KEY is a cons within map-char-table.
index 7a4a8ebf54f4541c5ff75da7c926e906bf791434..56a5a21e39b34dd0aff616fe219236f128c9c378 100644 (file)
@@ -1,18 +1,33 @@
 2002-08-20  Kenichi Handa  <handa@etl.go.jp>
 
-       * casefiddle.c (casify_object): Simplified.  Handle the case that
-       the case conversion change the byte length.
-       (casify_region): Likewise
+       * xdisp.c (get_next_display_element): Don't display unibyte 8-bit
+       characters by octal form.
 
-       * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New
-       macros.
+       * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
 
        * buffer.h (_fetch_multibyte_char_len): Extern deleted.
        (FETCH_MULTIBYTE_CHAR): Don't use _fetch_multibyte_char_len.
        (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
        (FETCH_CHAR_AS_MULTIBYTE): New macro.
 
+       * casetab.c (set_canon, set_identity, shuffle): Simplified.
+
+       * casefiddle.c (casify_object): Simplified.  Handle the case that
+       the case conversion change the byte length.  
+       (casify_region): Likewise
+
+       * character.h (MAKE_CHAR_UNIBYTE, MAKE_CHAR_MULTIBYTE): New
+       macros.
+
        * character.c (_fetch_multibyte_char_len): This variable deleted.
+       (syms_of_character): Setup Vprintable_chars.
+
+       * editfns.c (Fchar_equal): Fix for the unibyte case.
+
+       * keyboard.c (read_key_sequence): Use ~CHAR_MODIFIER_MASK instead
+       of direct code 0x3ffff.
+
+       * search.c (Freplace_match): Fix for the unibyte case.
 
 2002-08-19  Kenichi Handa  <handa@etl.go.jp>