summaryrefslogtreecommitdiff
path: root/enc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-30 03:53:44 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-30 03:53:44 +0000
commit286615d430e25754f26c352697f5d40ee24c9693 (patch)
tree740d248c5775b903b323b0975afe994111638864 /enc
parent2a5177e757ca0e26c1c05c0c05b37f161513e5e6 (diff)
* enc/emacs_mule.c (emacsmule_islead): fix inverse condition.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30727 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc')
-rw-r--r--enc/emacs_mule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/enc/emacs_mule.c b/enc/emacs_mule.c
index 246593b7eb..117c1aff39 100644
--- a/enc/emacs_mule.c
+++ b/enc/emacs_mule.c
@@ -30,7 +30,7 @@
#include "regint.h"
-#define emacsmule_islead(c) ((UChar )((c) - 0x81) > 0x9d - 0x81)
+#define emacsmule_islead(c) ((UChar )((c) - 0x81) < 0x9e - 0x81)
/*
CHARACTER := ASCII_CHAR | MULTIBYTE_CHAR