From 41f1dda7d2455c969285b2780528c1bbc4cbe951 Mon Sep 17 00:00:00 2001 From: j8takagi Date: Thu, 1 Nov 2012 18:59:23 +0900 Subject: [PATCH] =?utf8?q?=E3=83=A1=E3=83=A2=E3=83=AA=E5=86=85=E5=AE=B9?= =?utf8?q?=E3=82=92=E8=A1=A8=E7=A4=BA=E3=81=99=E3=82=8B=E3=81=A8=E3=81=8D?= =?utf8?q?=E3=80=81=E5=8D=8A=E8=A7=92=E3=82=AB=E3=83=8A=E3=81=AF=E8=A1=A8?= =?utf8?q?=E7=A4=BA=E3=81=97=E3=81=AA=E3=81=84=E3=82=88=E3=81=86=E4=BB=95?= =?utf8?q?=E6=A7=98=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/word.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/word.c b/src/word.c index b3fa717..e355a67 100644 --- a/src/word.c +++ b/src/word.c @@ -142,7 +142,7 @@ void print_dumpword(WORD word, bool logicalmode) } fprintf(stdout, " = #%04X = %s", word, word2bit(word)); /* 「文字の組」の符号表に記載された文字と、改行(CR)/タブを表示 */ - if((word >= 0x20 && word <= 0x7E) || (word >= 0xA0 && word <= 0xFE)) { + if(word >= 0x20 && word <= 0x7E) { fprintf(stdout, " = \'%c\'", word); } else if(word == 0xA) { fprintf(stdout, " = \'\\n\'"); -- 2.18.0