emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs/src coding.h


From: Kenichi Handa
Subject: [Emacs-diffs] emacs/src coding.h
Date: Wed, 08 Jul 2009 02:22:30 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Kenichi Handa <handa>   09/07/08 02:22:30

Modified files:
        src            : coding.h 

Log message:
        (JIS_TO_SJIS2): Fix the code range check.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/src/coding.h?cvsroot=emacs&r1=1.96&r2=1.97

Patches:
Index: coding.h
===================================================================
RCS file: /cvsroot/emacs/emacs/src/coding.h,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -b -r1.96 -r1.97
--- coding.h    6 Mar 2009 07:52:06 -0000       1.96
+++ coding.h    8 Jul 2009 02:22:30 -0000       1.97
@@ -630,7 +630,7 @@
     if (j1 & 1)                                                \
       {                                                        \
        s1 = (j1 <= 0x25 ? 0xF0 + (j1 - 0x21) / 2       \
-             : j1 <= 0x27 ? 0xF3 + (j1 - 0x2D) / 2     \
+             : j1 <= 0x2F ? 0xF3 + (j1 - 0x2D) / 2     \
              : 0xF5 + (j1 - 0x6F) / 2);                \
        s2 = j2 + ((j2 >= 0x60) ? 0x20 : 0x1F);         \
       }                                                        \




reply via email to

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