projects
/
YACASL2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
71d2636
)
メモリ内容を表示するとき、半角カナは表示しないよう仕様変更
author
j8takagi
<j8takagi@nifty.com>
Thu, 1 Nov 2012 09:59:23 +0000
(18:59 +0900)
committer
j8takagi
<j8takagi@nifty.com>
Thu, 1 Nov 2012 09:59:23 +0000
(18:59 +0900)
src/word.c
patch
|
blob
|
history
diff --git
a/src/word.c
b/src/word.c
index
b3fa717
..
e355a67
100644
(file)
--- 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\'");