summaryrefslogtreecommitdiff
path: root/enc
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-30 06:13:25 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-30 06:13:25 +0000
commitb4be48e88d74c1e5cce9d68aed30c4e4ef17d7c5 (patch)
tree3066878392faddefabd02e3e318ea5c14dbd9ab7 /enc
parent46142e472fd713023766aa2943158d7fd50011ae (diff)
* enc/emacs_mule.c (emacsmule_islead): 7bit range is also leading
byte. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30731 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 117c1aff39..f69936ea96 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) < 0x9e - 0x81)
+#define emacsmule_islead(c) ((UChar )(c) < 0x9e)
/*
CHARACTER := ASCII_CHAR | MULTIBYTE_CHAR