[Python-checkins] cpython: CJK codecs: remove unused TRYMAP_ENC_MPLANE macro

victor.stinner python-checkins at python.org
Tue Oct 29 01:02:23 CET 2013


http://hg.python.org/cpython/rev/071809616a64
changeset:   86710:071809616a64
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Oct 28 23:47:26 2013 +0100
summary:
  CJK codecs: remove unused TRYMAP_ENC_MPLANE macro

files:
  Modules/cjkcodecs/cjkcodecs.h |  10 ----------
  1 files changed, 0 insertions(+), 10 deletions(-)


diff --git a/Modules/cjkcodecs/cjkcodecs.h b/Modules/cjkcodecs/cjkcodecs.h
--- a/Modules/cjkcodecs/cjkcodecs.h
+++ b/Modules/cjkcodecs/cjkcodecs.h
@@ -185,16 +185,6 @@
 #define TRYMAP_DEC(charset, assi, c1, c2)                     \
     _TRYMAP_DEC(&charset##_decmap[c1], assi, c2)
 
-#define _TRYMAP_ENC_MPLANE(m, assplane, asshi, asslo, val)        \
-    ((m)->map != NULL && (val) >= (m)->bottom &&                  \
-        (val)<= (m)->top &&                                       \
-        ((assplane) = (m)->map[((val) - (m)->bottom)*3]) != 0 &&  \
-        (((asshi) = (m)->map[((val) - (m)->bottom)*3 + 1]), 1) && \
-        (((asslo) = (m)->map[((val) - (m)->bottom)*3 + 2]), 1))
-#define TRYMAP_ENC_MPLANE(charset, assplane, asshi, asslo, uni) \
-    if _TRYMAP_ENC_MPLANE(&charset##_encmap[(uni) >> 8], \
-                       assplane, asshi, asslo, (uni) & 0xff)
-
 #define BEGIN_MAPPINGS_LIST static const struct dbcs_map _mapping_list[] = {
 #define MAPPING_ENCONLY(enc) {#enc, (void*)enc##_encmap, NULL},
 #define MAPPING_DECONLY(enc) {#enc, NULL, (void*)enc##_decmap},

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list