emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/international/mule.el


From: Kenichi Handa
Subject: [Emacs-diffs] Changes to emacs/lisp/international/mule.el
Date: Wed, 04 Sep 2002 20:28:04 -0400

Index: emacs/lisp/international/mule.el
diff -c emacs/lisp/international/mule.el:1.160 
emacs/lisp/international/mule.el:1.161
*** emacs/lisp/international/mule.el:1.160      Wed Sep  4 04:15:40 2002
--- emacs/lisp/international/mule.el    Wed Sep  4 20:28:04 2002
***************
*** 308,315 ****
  Return nil if such a character is not supported.
  Currently the only supported coded character set is `ucs' (ISO/IEC
  10646: Universal Multi-Octet Coded Character Set), and the result is
! translated through the char table `utf-8-translation-table-for-decode'
! if the variable `utf-8-fragment-on-decoding' is non-nil.
  
  Optional argument RESTRICTION specifies a way to map the pair of CCS
  and CODE-POINT to a character.   Currently not supported and just ignored."
--- 308,314 ----
  Return nil if such a character is not supported.
  Currently the only supported coded character set is `ucs' (ISO/IEC
  10646: Universal Multi-Octet Coded Character Set), and the result is
! translated through the char table `utf-8-translation-table-for-decode'.
  
  Optional argument RESTRICTION specifies a way to map the pair of CCS
  and CODE-POINT to a character.   Currently not supported and just ignored."
***************
*** 332,340 ****
               (setq code-point (- code-point #xe000))
               (make-char 'mule-unicode-e000-ffff
                          (+ (/ code-point 96) 32) (+ (% code-point 96) 32))))))
!       (if (and c
!              utf-8-fragment-on-decoding
!              (aref utf-8-translation-table-for-decode c))
          (aref utf-8-translation-table-for-decode c)
        c)))))
  
--- 331,337 ----
               (setq code-point (- code-point #xe000))
               (make-char 'mule-unicode-e000-ffff
                          (+ (/ code-point 96) 32) (+ (% code-point 96) 32))))))
!       (if (and c (aref utf-8-translation-table-for-decode c))
          (aref utf-8-translation-table-for-decode c)
        c)))))
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]